aboutsummaryrefslogtreecommitdiffstats
path: root/examples/configVariables.py
blob: 3448fa038d9f98901f04a5d55d718760f248205c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/usr/bin/python

from iniparser import IniParser

inifile = IniParser()
eclipse_version= inifile.getValue("settings-eclipse.ini", "Run", "eclipse_version")

print eclipse_version

#menu
file_menu = 'File'
project_menu = 'Project'
run_menu='Run'
yocto_project_tools_menu = 'YoctoProjectTools'
window_menu = 'Window'
help_menu = 'Help'
new_menu = 'New'
targetprofiles_menu = 'Target Profiles'
externaltools_menu = 'External Tools'
openperspective_menu = 'Open Perspective'

### menu item
preferences_item = 'Preferences'
project_item = 'Project...'
changeYPsettings_item = 'Change Yocto Project Settings'
closeperspective_item = 'Close Perspective'
direct_item = 'Direct'
buildproject_item = 'Build Project'
qemu_item = '1 qemu_i586-poky-linux'
qemu2_item = '2 qemu_i586-poky-linux'
runconfiguration_item = 'Run Configurations...'
debugconfiguration_item = 'Debug Configurations...'
other_item = 'Other...'
bitbakerecipe_item = 'BitBake Recipe'
installnewsoftware_item = 'Install New Software...'
search_item = 'Search'
launchHob_item = 'Launch HOB'
launchToaster_item = 'Launch Toaster'
restart_item = 'Restart'
exit_item = 'Exit'

### button
cancel_button = 'Cancel'
apply_button = 'Apply'
ok_button = 'OK'
saveAs_button = 'Save as ...'
finish_button = 'Finish'
yes_button = 'Yes'
rename_button = 'Rename'
remove_button = 'Remove'
continue_button = 'Continue'
new_button = 'New...'
run_button = 'Run'
debug_button = 'Debug'
populate_button = 'Populate...'
add_button = 'Add...'
selectall_button = 'Select All'
details_button = '<< Details'
new2_button = 'New'
close_button= 'Close'

### radio button


### role name
menu_rolename = 'menu'
menuitem_rolename = 'menu item'
frame_rolename = 'frame'
text_rolename = 'text'
tablecell_rolename = 'table cell'
button_rolename = 'push button'
combobox_rolename = 'combo box'
radiobutton_rolename = 'radio button'
treetable_rolename = 'tree table'
radio_menu_item_rolename = 'radio menu item'
checkbox_rolename = 'check box'
togglebutton_rolename = 'toggle button'
label_rolename='label'




### frame
worspacelauncher_frame = 'Workspace Launcher '
preferences_frame = 'Preferences '
saveAs_frame = 'Save as new cross development profile '
new_project_frame = 'New Project '
open_perspective_frame = 'Open Associated Perspective? '
update_frame = 'Update cross development profile '
rename_frame = 'Rename cross development profile '
remove_frame = 'Remove cross development profile '
delete_frame = 'Delete Resources '
runconfiguration_frame = 'Run Configurations '
newconnection_frame = 'New Connection '
enterpassword_frame = 'Enter Password '
warning_frame = 'Warning '
projectproperties_frame = 'Properties for '
debugconfiguration_frame = 'Debug Configurations '
confirmperspectiveswitch_frame = 'Confirm Perspective Switch '
openp_other_erspective_frame = 'Open Perspective '
yoctoBBcommander_frame = 'Yocto Project BitBake Commander '
problemoccurred_frame = 'Problem Occurred '
install_frame = 'Install '
addrepository_frame = 'Add Repository '
securitywarning_frame = 'Security Warning '
softwareupdates_frame = 'Software Updates '
gdbserverdebugger_frame = 'gdbserver debugger '
launchHob_frame = 'Launch HOB '
launchToaster_frame = 'Launch Toaster'

###table cell
YP_ADT_tablecell = 'Yocto Project ADT'
general_tablecell = 'General'
executable_tablecell = 'Executable'
YPADT_AutotoolsP_tablecell = 'Yocto Project ADT Autotools Project'
reconfigureproject_tablecell = 'Reconfigure Project - Run configuration scripts for project'
console_tablecell = 'Console'
ssh_tablecell = 'SSH Only'
cansi_tablecell = 'Hello World ANSI C Autotools Project'
cgtk_tablecell = 'Hello World GTK C Autotools Project'
cplusansi_tablecell  = 'Hello World C++ Autotools Project'
cremote_tablecell = 'C/C++ Remote Application'

### tree table
projecttype_treetable = 'Project type:'

### description
clear_console_description = 'Clear Console'

###posible errors gdb
error_connection_closed = 'Remote connection closed'

if eclipse_version=="kepler":
    next_button = '&Next  '
    acceptterms_button = "I accept the terms of the license agreement"

elif eclipse_version=="luna":
    next_button = '&Next  '
    acceptterms_button = "I accept the terms of the license agreement"

elif eclipse_version=="mars":
    next_button = 'Next >'
    perspective_menu = "Perspective"
    acceptterms_button = "I accept the terms of the license agreements"
else:
    print "nasol"


### linux tools

perf_item = "perf"
perf_frame ="Perf   "

powertop_item = 'powertop'
powertop_frame = 'Powertop '