|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>StartDebugDialog</class> |
|
4 <widget class="QDialog" name="StartDebugDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>488</width> |
|
10 <height>292</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>Start debugging</string> |
|
15 </property> |
|
16 <property name="sizeGripEnabled"> |
|
17 <bool>true</bool> |
|
18 </property> |
|
19 <layout class="QGridLayout" name="gridLayout"> |
|
20 <item row="0" column="0"> |
|
21 <widget class="QLabel" name="TextLabel1"> |
|
22 <property name="text"> |
|
23 <string>Command&line:</string> |
|
24 </property> |
|
25 <property name="buddy"> |
|
26 <cstring>cmdlineCombo</cstring> |
|
27 </property> |
|
28 </widget> |
|
29 </item> |
|
30 <item row="0" column="1" colspan="3"> |
|
31 <widget class="QComboBox" name="cmdlineCombo"> |
|
32 <property name="sizePolicy"> |
|
33 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
|
34 <horstretch>0</horstretch> |
|
35 <verstretch>0</verstretch> |
|
36 </sizepolicy> |
|
37 </property> |
|
38 <property name="toolTip"> |
|
39 <string>Enter the commandline parameters</string> |
|
40 </property> |
|
41 <property name="whatsThis"> |
|
42 <string><b>Commandline</b> |
|
43 <p>Enter the commandline parameters in this field.</p></string> |
|
44 </property> |
|
45 <property name="editable"> |
|
46 <bool>true</bool> |
|
47 </property> |
|
48 <property name="insertPolicy"> |
|
49 <enum>QComboBox::InsertAtTop</enum> |
|
50 </property> |
|
51 <property name="autoCompletion"> |
|
52 <bool>true</bool> |
|
53 </property> |
|
54 <property name="duplicatesEnabled"> |
|
55 <bool>false</bool> |
|
56 </property> |
|
57 </widget> |
|
58 </item> |
|
59 <item row="1" column="0"> |
|
60 <widget class="QLabel" name="TextLabel2"> |
|
61 <property name="text"> |
|
62 <string>&Working directory:</string> |
|
63 </property> |
|
64 <property name="buddy"> |
|
65 <cstring>workdirCombo</cstring> |
|
66 </property> |
|
67 </widget> |
|
68 </item> |
|
69 <item row="1" column="1" colspan="2"> |
|
70 <widget class="QComboBox" name="workdirCombo"> |
|
71 <property name="sizePolicy"> |
|
72 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
|
73 <horstretch>0</horstretch> |
|
74 <verstretch>0</verstretch> |
|
75 </sizepolicy> |
|
76 </property> |
|
77 <property name="toolTip"> |
|
78 <string>Enter the working directory</string> |
|
79 </property> |
|
80 <property name="whatsThis"> |
|
81 <string><b>Working directory</b> |
|
82 <p>Enter the working directory of the application to be debugged. Leave it empty to set the working directory to the executable directory.</p></string> |
|
83 </property> |
|
84 <property name="editable"> |
|
85 <bool>true</bool> |
|
86 </property> |
|
87 <property name="insertPolicy"> |
|
88 <enum>QComboBox::InsertAtTop</enum> |
|
89 </property> |
|
90 <property name="autoCompletion"> |
|
91 <bool>true</bool> |
|
92 </property> |
|
93 <property name="duplicatesEnabled"> |
|
94 <bool>false</bool> |
|
95 </property> |
|
96 </widget> |
|
97 </item> |
|
98 <item row="1" column="3"> |
|
99 <widget class="QPushButton" name="dirButton"> |
|
100 <property name="toolTip"> |
|
101 <string>Select directory using a directory selection dialog</string> |
|
102 </property> |
|
103 <property name="whatsThis"> |
|
104 <string><b>Select directory</b> |
|
105 <p>Select the working directory via a directory selection dialog.</p></string> |
|
106 </property> |
|
107 <property name="text"> |
|
108 <string>...</string> |
|
109 </property> |
|
110 </widget> |
|
111 </item> |
|
112 <item row="2" column="0"> |
|
113 <widget class="QLabel" name="textLabel1"> |
|
114 <property name="text"> |
|
115 <string>&Environment:</string> |
|
116 </property> |
|
117 <property name="buddy"> |
|
118 <cstring>environmentCombo</cstring> |
|
119 </property> |
|
120 </widget> |
|
121 </item> |
|
122 <item row="2" column="1" colspan="3"> |
|
123 <widget class="QComboBox" name="environmentCombo"> |
|
124 <property name="sizePolicy"> |
|
125 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> |
|
126 <horstretch>0</horstretch> |
|
127 <verstretch>0</verstretch> |
|
128 </sizepolicy> |
|
129 </property> |
|
130 <property name="toolTip"> |
|
131 <string>Enter the environment variables to be set.</string> |
|
132 </property> |
|
133 <property name="whatsThis"> |
|
134 <string><b>Environment</b> |
|
135 <p>Enter the environment variables to be set for the program. The individual settings must be separated by whitespace and be given in the form 'var=value'. In order to add to an environment variable, enter it in the form 'var+=value'.</p> |
|
136 <p>Example: var1=1 var2="hello world" var3+=":/tmp"</p></string> |
|
137 </property> |
|
138 <property name="editable"> |
|
139 <bool>true</bool> |
|
140 </property> |
|
141 <property name="insertPolicy"> |
|
142 <enum>QComboBox::InsertAtTop</enum> |
|
143 </property> |
|
144 <property name="autoCompletion"> |
|
145 <bool>true</bool> |
|
146 </property> |
|
147 <property name="duplicatesEnabled"> |
|
148 <bool>false</bool> |
|
149 </property> |
|
150 </widget> |
|
151 </item> |
|
152 <item row="3" column="0" colspan="2"> |
|
153 <widget class="QCheckBox" name="exceptionCheckBox"> |
|
154 <property name="toolTip"> |
|
155 <string>Uncheck to disable exception reporting</string> |
|
156 </property> |
|
157 <property name="whatsThis"> |
|
158 <string><b>Report exceptions</b> |
|
159 <p>Uncheck this in order to disable exception reporting.</p></string> |
|
160 </property> |
|
161 <property name="text"> |
|
162 <string>Report &exceptions</string> |
|
163 </property> |
|
164 <property name="shortcut"> |
|
165 <string>Alt+E</string> |
|
166 </property> |
|
167 <property name="checked"> |
|
168 <bool>true</bool> |
|
169 </property> |
|
170 </widget> |
|
171 </item> |
|
172 <item row="3" column="2" colspan="2"> |
|
173 <widget class="QCheckBox" name="clearShellCheckBox"> |
|
174 <property name="toolTip"> |
|
175 <string>Select to clear the display of the interpreter window</string> |
|
176 </property> |
|
177 <property name="whatsThis"> |
|
178 <string><b>Clear interpreter window</b><p>This clears the display of the interpreter window before starting the debug client.</p></string> |
|
179 </property> |
|
180 <property name="text"> |
|
181 <string>Clear &interpreter window</string> |
|
182 </property> |
|
183 <property name="checked"> |
|
184 <bool>true</bool> |
|
185 </property> |
|
186 </widget> |
|
187 </item> |
|
188 <item row="4" column="0" colspan="2"> |
|
189 <widget class="QCheckBox" name="consoleCheckBox"> |
|
190 <property name="toolTip"> |
|
191 <string>Select to start the debugger in a console window</string> |
|
192 </property> |
|
193 <property name="whatsThis"> |
|
194 <string><b>Start in console</b> |
|
195 <p>Select to start the debugger in a console window. The console command has to be configured on the Debugger-&gt;General page</p></string> |
|
196 </property> |
|
197 <property name="text"> |
|
198 <string>Start in console</string> |
|
199 </property> |
|
200 </widget> |
|
201 </item> |
|
202 <item row="5" column="0" colspan="2"> |
|
203 <widget class="QCheckBox" name="tracePythonCheckBox"> |
|
204 <property name="toolTip"> |
|
205 <string>Select to trace into the Python library</string> |
|
206 </property> |
|
207 <property name="text"> |
|
208 <string>&Trace into interpreter libraries</string> |
|
209 </property> |
|
210 <property name="shortcut"> |
|
211 <string>Alt+T</string> |
|
212 </property> |
|
213 </widget> |
|
214 </item> |
|
215 <item row="5" column="2" colspan="2"> |
|
216 <widget class="QCheckBox" name="autoContinueCheckBox"> |
|
217 <property name="toolTip"> |
|
218 <string>Select to not stop the debugger at the first executable line.</string> |
|
219 </property> |
|
220 <property name="whatsThis"> |
|
221 <string><b>Don't stop at first line</b><p>This prevents the debugger from stopping at the first executable line.</p></string> |
|
222 </property> |
|
223 <property name="text"> |
|
224 <string>Don't stop at first line</string> |
|
225 </property> |
|
226 <property name="checked"> |
|
227 <bool>true</bool> |
|
228 </property> |
|
229 </widget> |
|
230 </item> |
|
231 <item row="6" column="0" colspan="4"> |
|
232 <widget class="QGroupBox" name="groupBox"> |
|
233 <property name="title"> |
|
234 <string>Forking</string> |
|
235 </property> |
|
236 <layout class="QHBoxLayout" name="horizontalLayout"> |
|
237 <item> |
|
238 <widget class="QCheckBox" name="forkModeCheckBox"> |
|
239 <property name="toolTip"> |
|
240 <string>Select to go through the fork without asking</string> |
|
241 </property> |
|
242 <property name="whatsThis"> |
|
243 <string><b>Fork without pausing</b> |
|
244 <p>Select to go through the fork without asking making the forking decision based on the Parent/Child selection.</p></string> |
|
245 </property> |
|
246 <property name="text"> |
|
247 <string>Fork without pausing</string> |
|
248 </property> |
|
249 </widget> |
|
250 </item> |
|
251 <item> |
|
252 <widget class="QCheckBox" name="forkChildCheckBox"> |
|
253 <property name="enabled"> |
|
254 <bool>false</bool> |
|
255 </property> |
|
256 <property name="toolTip"> |
|
257 <string>Select to debug the child process after forking</string> |
|
258 </property> |
|
259 <property name="whatsThis"> |
|
260 <string><b>Debug Child Process</b> |
|
261 <p>Select to debug the child process after forking. If it is not selected, the parent process will be debugged. This has no effect, if forking without pausing is not selected.</p></string> |
|
262 </property> |
|
263 <property name="text"> |
|
264 <string>Debug Child Process</string> |
|
265 </property> |
|
266 </widget> |
|
267 </item> |
|
268 </layout> |
|
269 </widget> |
|
270 </item> |
|
271 <item row="7" column="0" colspan="4"> |
|
272 <widget class="QDialogButtonBox" name="buttonBox"> |
|
273 <property name="orientation"> |
|
274 <enum>Qt::Horizontal</enum> |
|
275 </property> |
|
276 <property name="standardButtons"> |
|
277 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
|
278 </property> |
|
279 </widget> |
|
280 </item> |
|
281 </layout> |
|
282 </widget> |
|
283 <layoutdefault spacing="6" margin="6"/> |
|
284 <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> |
|
285 <tabstops> |
|
286 <tabstop>cmdlineCombo</tabstop> |
|
287 <tabstop>workdirCombo</tabstop> |
|
288 <tabstop>dirButton</tabstop> |
|
289 <tabstop>environmentCombo</tabstop> |
|
290 <tabstop>exceptionCheckBox</tabstop> |
|
291 <tabstop>clearShellCheckBox</tabstop> |
|
292 <tabstop>consoleCheckBox</tabstop> |
|
293 <tabstop>tracePythonCheckBox</tabstop> |
|
294 <tabstop>autoContinueCheckBox</tabstop> |
|
295 <tabstop>forkModeCheckBox</tabstop> |
|
296 <tabstop>forkChildCheckBox</tabstop> |
|
297 <tabstop>buttonBox</tabstop> |
|
298 </tabstops> |
|
299 <resources/> |
|
300 <connections> |
|
301 <connection> |
|
302 <sender>buttonBox</sender> |
|
303 <signal>accepted()</signal> |
|
304 <receiver>StartDebugDialog</receiver> |
|
305 <slot>accept()</slot> |
|
306 <hints> |
|
307 <hint type="sourcelabel"> |
|
308 <x>59</x> |
|
309 <y>282</y> |
|
310 </hint> |
|
311 <hint type="destinationlabel"> |
|
312 <x>43</x> |
|
313 <y>179</y> |
|
314 </hint> |
|
315 </hints> |
|
316 </connection> |
|
317 <connection> |
|
318 <sender>buttonBox</sender> |
|
319 <signal>rejected()</signal> |
|
320 <receiver>StartDebugDialog</receiver> |
|
321 <slot>reject()</slot> |
|
322 <hints> |
|
323 <hint type="sourcelabel"> |
|
324 <x>127</x> |
|
325 <y>282</y> |
|
326 </hint> |
|
327 <hint type="destinationlabel"> |
|
328 <x>118</x> |
|
329 <y>180</y> |
|
330 </hint> |
|
331 </hints> |
|
332 </connection> |
|
333 <connection> |
|
334 <sender>forkModeCheckBox</sender> |
|
335 <signal>toggled(bool)</signal> |
|
336 <receiver>forkChildCheckBox</receiver> |
|
337 <slot>setEnabled(bool)</slot> |
|
338 <hints> |
|
339 <hint type="sourcelabel"> |
|
340 <x>164</x> |
|
341 <y>229</y> |
|
342 </hint> |
|
343 <hint type="destinationlabel"> |
|
344 <x>276</x> |
|
345 <y>228</y> |
|
346 </hint> |
|
347 </hints> |
|
348 </connection> |
|
349 </connections> |
|
350 </ui> |