src/eric7/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui

branch
eric7
changeset 9209
b99e7fd55fd3
parent 9071
1cd0e0589acd
child 9413
80c06d472826
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>MessageBoxWizardDialog</class>
4 <widget class="QDialog" name="MessageBoxWizardDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>600</width>
10 <height>650</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>QMessageBox Wizard</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QVBoxLayout" name="verticalLayout">
20 <item>
21 <widget class="QGroupBox" name="groupBox">
22 <property name="title">
23 <string>Type</string>
24 </property>
25 <layout class="QHBoxLayout">
26 <item>
27 <widget class="QRadioButton" name="rInformation">
28 <property name="toolTip">
29 <string>Generate an Information QMessageBox</string>
30 </property>
31 <property name="text">
32 <string>Information</string>
33 </property>
34 <property name="checked">
35 <bool>true</bool>
36 </property>
37 </widget>
38 </item>
39 <item>
40 <widget class="QRadioButton" name="rQuestion">
41 <property name="focusPolicy">
42 <enum>Qt::TabFocus</enum>
43 </property>
44 <property name="toolTip">
45 <string>Generate a Question QMessageBox</string>
46 </property>
47 <property name="text">
48 <string>Question</string>
49 </property>
50 </widget>
51 </item>
52 <item>
53 <widget class="QRadioButton" name="rWarning">
54 <property name="focusPolicy">
55 <enum>Qt::TabFocus</enum>
56 </property>
57 <property name="toolTip">
58 <string>Generate a Warning QMessageBox</string>
59 </property>
60 <property name="text">
61 <string>Warning</string>
62 </property>
63 </widget>
64 </item>
65 <item>
66 <widget class="QRadioButton" name="rCritical">
67 <property name="focusPolicy">
68 <enum>Qt::TabFocus</enum>
69 </property>
70 <property name="toolTip">
71 <string>Generate a Critical QMessageBox</string>
72 </property>
73 <property name="text">
74 <string>Critical</string>
75 </property>
76 </widget>
77 </item>
78 <item>
79 <widget class="QRadioButton" name="rAbout">
80 <property name="focusPolicy">
81 <enum>Qt::TabFocus</enum>
82 </property>
83 <property name="toolTip">
84 <string>Generate an About QMessageBox</string>
85 </property>
86 <property name="text">
87 <string>About</string>
88 </property>
89 </widget>
90 </item>
91 <item>
92 <widget class="QRadioButton" name="rAboutQt">
93 <property name="focusPolicy">
94 <enum>Qt::TabFocus</enum>
95 </property>
96 <property name="toolTip">
97 <string>Generate an AboutQt QMessageBox</string>
98 </property>
99 <property name="text">
100 <string>About Qt</string>
101 </property>
102 </widget>
103 </item>
104 </layout>
105 </widget>
106 </item>
107 <item>
108 <widget class="QLabel" name="lResultVar">
109 <property name="text">
110 <string>Result:</string>
111 </property>
112 </widget>
113 </item>
114 <item>
115 <widget class="QLineEdit" name="eResultVar">
116 <property name="toolTip">
117 <string>Enter the result variable name</string>
118 </property>
119 </widget>
120 </item>
121 <item>
122 <widget class="QLabel" name="textLabel1">
123 <property name="text">
124 <string>Title</string>
125 </property>
126 </widget>
127 </item>
128 <item>
129 <widget class="QLineEdit" name="eCaption">
130 <property name="toolTip">
131 <string>Enter the title for the QMessageBox</string>
132 </property>
133 </widget>
134 </item>
135 <item>
136 <widget class="QLabel" name="textLabel2">
137 <property name="text">
138 <string>Message</string>
139 </property>
140 </widget>
141 </item>
142 <item>
143 <widget class="EricSpellCheckedTextEdit" name="eMessage">
144 <property name="toolTip">
145 <string>Enter the message to be shown in the QMessageBox</string>
146 </property>
147 <property name="tabChangesFocus">
148 <bool>true</bool>
149 </property>
150 </widget>
151 </item>
152 <item>
153 <widget class="QGroupBox" name="parentGroup">
154 <property name="title">
155 <string>Parent</string>
156 </property>
157 <layout class="QGridLayout" name="gridLayout_3">
158 <item row="0" column="0">
159 <widget class="QRadioButton" name="parentSelf">
160 <property name="toolTip">
161 <string>Select &quot;self&quot; as parent</string>
162 </property>
163 <property name="text">
164 <string>self</string>
165 </property>
166 <property name="checked">
167 <bool>true</bool>
168 </property>
169 </widget>
170 </item>
171 <item row="0" column="1">
172 <widget class="QRadioButton" name="parentNone">
173 <property name="toolTip">
174 <string>Select &quot;None&quot; as parent</string>
175 </property>
176 <property name="text">
177 <string>None</string>
178 </property>
179 </widget>
180 </item>
181 <item row="1" column="0" colspan="2">
182 <layout class="QHBoxLayout" name="horizontalLayout_2">
183 <item>
184 <widget class="QRadioButton" name="parentOther">
185 <property name="toolTip">
186 <string>Select to enter a parent expression</string>
187 </property>
188 <property name="text">
189 <string>Expression:</string>
190 </property>
191 </widget>
192 </item>
193 <item>
194 <widget class="QLineEdit" name="parentEdit">
195 <property name="enabled">
196 <bool>false</bool>
197 </property>
198 <property name="toolTip">
199 <string>Enter the parent expression</string>
200 </property>
201 </widget>
202 </item>
203 </layout>
204 </item>
205 </layout>
206 </widget>
207 </item>
208 <item>
209 <widget class="QGroupBox" name="standardButtons">
210 <property name="title">
211 <string>Standard Buttons</string>
212 </property>
213 <layout class="QVBoxLayout">
214 <item>
215 <layout class="QGridLayout">
216 <item row="0" column="1">
217 <widget class="QCheckBox" name="applyCheck">
218 <property name="text">
219 <string>Apply</string>
220 </property>
221 </widget>
222 </item>
223 <item row="0" column="0">
224 <widget class="QCheckBox" name="abortCheck">
225 <property name="text">
226 <string>Abort</string>
227 </property>
228 </widget>
229 </item>
230 <item row="0" column="2">
231 <widget class="QCheckBox" name="cancelCheck">
232 <property name="text">
233 <string>Cancel</string>
234 </property>
235 </widget>
236 </item>
237 <item row="1" column="1">
238 <widget class="QCheckBox" name="ignoreCheck">
239 <property name="text">
240 <string>Ignore</string>
241 </property>
242 </widget>
243 </item>
244 <item row="3" column="0">
245 <widget class="QCheckBox" name="saveallCheck">
246 <property name="text">
247 <string>Save all</string>
248 </property>
249 </widget>
250 </item>
251 <item row="2" column="4">
252 <widget class="QCheckBox" name="saveCheck">
253 <property name="text">
254 <string>Save</string>
255 </property>
256 </widget>
257 </item>
258 <item row="0" column="4">
259 <widget class="QCheckBox" name="discardCheck">
260 <property name="text">
261 <string>Discard</string>
262 </property>
263 </widget>
264 </item>
265 <item row="3" column="2">
266 <widget class="QCheckBox" name="yestoallCheck">
267 <property name="text">
268 <string>Yes to all</string>
269 </property>
270 </widget>
271 </item>
272 <item row="2" column="0">
273 <widget class="QCheckBox" name="openCheck">
274 <property name="text">
275 <string>Open</string>
276 </property>
277 </widget>
278 </item>
279 <item row="2" column="1">
280 <widget class="QCheckBox" name="resetCheck">
281 <property name="text">
282 <string>Reset</string>
283 </property>
284 </widget>
285 </item>
286 <item row="1" column="4">
287 <widget class="QCheckBox" name="okCheck">
288 <property name="text">
289 <string>Ok</string>
290 </property>
291 </widget>
292 </item>
293 <item row="1" column="2">
294 <widget class="QCheckBox" name="noCheck">
295 <property name="text">
296 <string>No</string>
297 </property>
298 </widget>
299 </item>
300 <item row="1" column="0">
301 <widget class="QCheckBox" name="helpCheck">
302 <property name="text">
303 <string>Help</string>
304 </property>
305 </widget>
306 </item>
307 <item row="1" column="3">
308 <widget class="QCheckBox" name="notoallCheck">
309 <property name="text">
310 <string>No to all</string>
311 </property>
312 </widget>
313 </item>
314 <item row="2" column="3">
315 <widget class="QCheckBox" name="retryCheck">
316 <property name="text">
317 <string>Retry</string>
318 </property>
319 </widget>
320 </item>
321 <item row="2" column="2">
322 <widget class="QCheckBox" name="restoreCheck">
323 <property name="text">
324 <string>Restore defaults</string>
325 </property>
326 </widget>
327 </item>
328 <item row="3" column="1">
329 <widget class="QCheckBox" name="yesCheck">
330 <property name="text">
331 <string>Yes</string>
332 </property>
333 </widget>
334 </item>
335 <item row="0" column="3">
336 <widget class="QCheckBox" name="closeCheck">
337 <property name="text">
338 <string>Close</string>
339 </property>
340 </widget>
341 </item>
342 </layout>
343 </item>
344 <item>
345 <layout class="QHBoxLayout">
346 <item>
347 <widget class="QLabel" name="TextLabel1_2">
348 <property name="text">
349 <string>Default Button:</string>
350 </property>
351 </widget>
352 </item>
353 <item>
354 <widget class="QComboBox" name="defaultCombo">
355 <property name="sizePolicy">
356 <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
357 <horstretch>0</horstretch>
358 <verstretch>0</verstretch>
359 </sizepolicy>
360 </property>
361 <property name="toolTip">
362 <string>Select the default button</string>
363 </property>
364 </widget>
365 </item>
366 </layout>
367 </item>
368 </layout>
369 </widget>
370 </item>
371 <item>
372 <widget class="QDialogButtonBox" name="buttonBox">
373 <property name="orientation">
374 <enum>Qt::Horizontal</enum>
375 </property>
376 <property name="standardButtons">
377 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
378 </property>
379 </widget>
380 </item>
381 </layout>
382 </widget>
383 <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
384 <customwidgets>
385 <customwidget>
386 <class>EricSpellCheckedTextEdit</class>
387 <extends>QTextEdit</extends>
388 <header>EricWidgets/EricSpellCheckedTextEdit.h</header>
389 </customwidget>
390 </customwidgets>
391 <tabstops>
392 <tabstop>rInformation</tabstop>
393 <tabstop>rQuestion</tabstop>
394 <tabstop>rWarning</tabstop>
395 <tabstop>rCritical</tabstop>
396 <tabstop>rAbout</tabstop>
397 <tabstop>rAboutQt</tabstop>
398 <tabstop>eResultVar</tabstop>
399 <tabstop>eCaption</tabstop>
400 <tabstop>eMessage</tabstop>
401 <tabstop>parentSelf</tabstop>
402 <tabstop>parentNone</tabstop>
403 <tabstop>parentOther</tabstop>
404 <tabstop>parentEdit</tabstop>
405 <tabstop>abortCheck</tabstop>
406 <tabstop>applyCheck</tabstop>
407 <tabstop>cancelCheck</tabstop>
408 <tabstop>closeCheck</tabstop>
409 <tabstop>discardCheck</tabstop>
410 <tabstop>helpCheck</tabstop>
411 <tabstop>ignoreCheck</tabstop>
412 <tabstop>noCheck</tabstop>
413 <tabstop>notoallCheck</tabstop>
414 <tabstop>okCheck</tabstop>
415 <tabstop>openCheck</tabstop>
416 <tabstop>resetCheck</tabstop>
417 <tabstop>restoreCheck</tabstop>
418 <tabstop>retryCheck</tabstop>
419 <tabstop>saveCheck</tabstop>
420 <tabstop>saveallCheck</tabstop>
421 <tabstop>yesCheck</tabstop>
422 <tabstop>yestoallCheck</tabstop>
423 <tabstop>defaultCombo</tabstop>
424 <tabstop>buttonBox</tabstop>
425 </tabstops>
426 <resources/>
427 <connections>
428 <connection>
429 <sender>buttonBox</sender>
430 <signal>accepted()</signal>
431 <receiver>MessageBoxWizardDialog</receiver>
432 <slot>accept()</slot>
433 <hints>
434 <hint type="sourcelabel">
435 <x>43</x>
436 <y>529</y>
437 </hint>
438 <hint type="destinationlabel">
439 <x>34</x>
440 <y>538</y>
441 </hint>
442 </hints>
443 </connection>
444 <connection>
445 <sender>buttonBox</sender>
446 <signal>rejected()</signal>
447 <receiver>MessageBoxWizardDialog</receiver>
448 <slot>reject()</slot>
449 <hints>
450 <hint type="sourcelabel">
451 <x>135</x>
452 <y>529</y>
453 </hint>
454 <hint type="destinationlabel">
455 <x>126</x>
456 <y>538</y>
457 </hint>
458 </hints>
459 </connection>
460 <connection>
461 <sender>parentOther</sender>
462 <signal>toggled(bool)</signal>
463 <receiver>parentEdit</receiver>
464 <slot>setEnabled(bool)</slot>
465 <hints>
466 <hint type="sourcelabel">
467 <x>90</x>
468 <y>305</y>
469 </hint>
470 <hint type="destinationlabel">
471 <x>140</x>
472 <y>309</y>
473 </hint>
474 </hints>
475 </connection>
476 </connections>
477 </ui>

eric ide

mercurial