|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>PyRegExpWizardDialog</class> |
|
4 <widget class="QWidget" name="PyRegExpWizardDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>750</width> |
|
10 <height>700</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>Python re Wizard</string> |
|
15 </property> |
|
16 <property name="sizeGripEnabled" stdset="0"> |
|
17 <bool>true</bool> |
|
18 </property> |
|
19 <layout class="QVBoxLayout" name="verticalLayout"> |
|
20 <item> |
|
21 <widget class="QGroupBox" name="versionGroup"> |
|
22 <property name="title"> |
|
23 <string>Python Version</string> |
|
24 </property> |
|
25 <layout class="QHBoxLayout" name="horizontalLayout"> |
|
26 <item> |
|
27 <widget class="QRadioButton" name="py2Button"> |
|
28 <property name="statusTip"> |
|
29 <string/> |
|
30 </property> |
|
31 <property name="text"> |
|
32 <string>Python 2</string> |
|
33 </property> |
|
34 <property name="checked"> |
|
35 <bool>true</bool> |
|
36 </property> |
|
37 </widget> |
|
38 </item> |
|
39 <item> |
|
40 <widget class="QRadioButton" name="py3Button"> |
|
41 <property name="text"> |
|
42 <string>Python 3</string> |
|
43 </property> |
|
44 </widget> |
|
45 </item> |
|
46 <item> |
|
47 <spacer name="horizontalSpacer"> |
|
48 <property name="orientation"> |
|
49 <enum>Qt::Horizontal</enum> |
|
50 </property> |
|
51 <property name="sizeHint" stdset="0"> |
|
52 <size> |
|
53 <width>535</width> |
|
54 <height>20</height> |
|
55 </size> |
|
56 </property> |
|
57 </spacer> |
|
58 </item> |
|
59 </layout> |
|
60 </widget> |
|
61 </item> |
|
62 <item> |
|
63 <layout class="QHBoxLayout"> |
|
64 <item> |
|
65 <widget class="QLabel" name="variableLabel"> |
|
66 <property name="text"> |
|
67 <string>Variable Name:</string> |
|
68 </property> |
|
69 </widget> |
|
70 </item> |
|
71 <item> |
|
72 <widget class="QLineEdit" name="variableLineEdit"/> |
|
73 </item> |
|
74 </layout> |
|
75 </item> |
|
76 <item> |
|
77 <widget class="QCheckBox" name="importCheckBox"> |
|
78 <property name="text"> |
|
79 <string>Include import statement</string> |
|
80 </property> |
|
81 </widget> |
|
82 </item> |
|
83 <item> |
|
84 <widget class="Line" name="variableLine"> |
|
85 <property name="frameShape"> |
|
86 <enum>QFrame::HLine</enum> |
|
87 </property> |
|
88 <property name="frameShadow"> |
|
89 <enum>QFrame::Sunken</enum> |
|
90 </property> |
|
91 <property name="orientation"> |
|
92 <enum>Qt::Horizontal</enum> |
|
93 </property> |
|
94 </widget> |
|
95 </item> |
|
96 <item> |
|
97 <layout class="QHBoxLayout"> |
|
98 <item> |
|
99 <widget class="QToolButton" name="commentButton"> |
|
100 <property name="toolTip"> |
|
101 <string><b>Comment: (?#)</b> |
|
102 <p>Insert some comment inside your regexp.</p></string> |
|
103 </property> |
|
104 <property name="whatsThis"> |
|
105 <string><b>Comment: (?#)</b> |
|
106 <p>Insert some comment inside your regexp.The regex engine ignores everything after the (?# until the first closing round bracket. |
|
107 The following example could clarify the regexp which match a valid date: </p> |
|
108 <p>(?#year)(19|20)\d\d[- /.](?#month)(0[1-9]|1[012])[- /.](?#day)(0[1-9]|[12][0-9]|3[01])</p></string> |
|
109 </property> |
|
110 <property name="text"> |
|
111 <string>...</string> |
|
112 </property> |
|
113 </widget> |
|
114 </item> |
|
115 <item> |
|
116 <widget class="QToolButton" name="charButton"> |
|
117 <property name="toolTip"> |
|
118 <string><b>Single character of a range (e.g. [abcd])</b><p>Select a single character of a range via a specific dialog.</p></string> |
|
119 </property> |
|
120 <property name="whatsThis"> |
|
121 <string><b>Single character of a range (e.g. [abcd])</b><p>Select a single character of a range via a specific dialog. This dialog will help to edit the range of characters and add some specific conditions.</p>s</string> |
|
122 </property> |
|
123 <property name="text"> |
|
124 <string>...</string> |
|
125 </property> |
|
126 </widget> |
|
127 </item> |
|
128 <item> |
|
129 <widget class="QToolButton" name="anycharButton"> |
|
130 <property name="toolTip"> |
|
131 <string><b>Any character: '.'</b> |
|
132 <p>Select to insert a dot (.) in your regexp.</p></string> |
|
133 </property> |
|
134 <property name="whatsThis"> |
|
135 <string><b>Any character: '.'</b> |
|
136 <p>Select to insert a dot (.) in your regexp. The dot matches a single character, except line break characters (by default). |
|
137 E.g. 'gr.y' matches 'gray', 'grey', 'gr%y', etc. Use the dot sparingly. Often, a character class or negated |
|
138 character class is faster and more precise.</p></string> |
|
139 </property> |
|
140 <property name="text"> |
|
141 <string>...</string> |
|
142 </property> |
|
143 </widget> |
|
144 </item> |
|
145 <item> |
|
146 <widget class="QToolButton" name="repeatButton"> |
|
147 <property name="toolTip"> |
|
148 <string><b>Repeat contents</b> |
|
149 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
|
150 </property> |
|
151 <property name="whatsThis"> |
|
152 <string><b>Repeat contents</b> |
|
153 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
|
154 </property> |
|
155 <property name="text"> |
|
156 <string>...</string> |
|
157 </property> |
|
158 </widget> |
|
159 </item> |
|
160 <item> |
|
161 <widget class="QToolButton" name="nonGroupButton"> |
|
162 <property name="toolTip"> |
|
163 <string><b>Non capturing parentheses: (?:)</b> |
|
164 <p>Select to insert some non capturing brackets.</p></string> |
|
165 </property> |
|
166 <property name="whatsThis"> |
|
167 <string><b>Non capturing parentheses: (?:)</b> |
|
168 <p>Select to insert some non capturing brackets. It can be used to apply a regexp quantifier (eg. '?' or '+') to the entire |
|
169 group of characters inside the brakets. E.g. the regex 'Set(?:Value)?' matches 'Set' or 'SetValue'. The '?:' inside the brakets |
|
170 means that the content of the match (called the backreference) is not stored for further use.</p></string> |
|
171 </property> |
|
172 <property name="text"> |
|
173 <string>...</string> |
|
174 </property> |
|
175 </widget> |
|
176 </item> |
|
177 <item> |
|
178 <widget class="QToolButton" name="groupButton"> |
|
179 <property name="toolTip"> |
|
180 <string><b>Group: ()</b> |
|
181 <p>Select to insert some capturing brackets.</p></string> |
|
182 </property> |
|
183 <property name="whatsThis"> |
|
184 <string><b>Group: ()</b> |
|
185 <p>Select to insert some capturing brackets. They can be used to apply a regexp quantifier (e.g. '?' or '+') to the entire group of |
|
186 characters inside the brakets. E.g. the regex 'Set(Value)?' matches 'Set' or 'SetValue'. Contrary to non-capturing parentheses, |
|
187 the backreference matched inside the brakets is stored for further use (i.e. 'Value' in the second example above). |
|
188 One can access the backereference with the '\1' expression. </p> |
|
189 <p>E.g. '([a-c])x\1x\1' will match 'axaxa', 'bxbxb' and 'cxcxc'.</p></string> |
|
190 </property> |
|
191 <property name="text"> |
|
192 <string>...</string> |
|
193 </property> |
|
194 </widget> |
|
195 </item> |
|
196 <item> |
|
197 <widget class="QToolButton" name="namedGroupButton"> |
|
198 <property name="toolTip"> |
|
199 <string><b>Named group: (?P&lt;<i>groupname</i>&gt;)</b> |
|
200 <p>Select to insert some named group brackets.</p></string> |
|
201 </property> |
|
202 <property name="whatsThis"> |
|
203 <string><b>Named group: (?P&lt;<i>groupname</i>&gt;)</b> |
|
204 <p>Select to insert some named group brackets. Usage is similar to standard group parentheses as the matched |
|
205 backreference is also stored for further usage. The difference is that a name is given to the match. This is useful when |
|
206 the work to do on the match becomes a bit complicated. One can access the backreference via the group name (i.e (?P=<i>groupname</i>)). |
|
207 E.g. (?P<foo>[abc])x(?P=foo)x(?P=foo)x matches 'axaxax','bxbxbx' or 'cxcxcx' ('foo' is the group name)</p></string> |
|
208 </property> |
|
209 <property name="text"> |
|
210 <string>...</string> |
|
211 </property> |
|
212 </widget> |
|
213 </item> |
|
214 <item> |
|
215 <widget class="QToolButton" name="namedReferenceButton"> |
|
216 <property name="toolTip"> |
|
217 <string><b>Reference named group: (?P=<i>groupname</i>)</b> |
|
218 <p>Select to insert a reference to named group previously declared.</p></string> |
|
219 </property> |
|
220 <property name="whatsThis"> |
|
221 <string><b>Reference named group: (?P=<i>groupname</i>)</b> |
|
222 <p>Select to insert a reference to named group previously declared. Each reference group refers to the match |
|
223 found by the corresponding named group. In the following example, (?P=foo) may refer to the charaters 'a','b' or 'c'.</p> |
|
224 <p>E.g. (?P<foo>[abc])x(?P=foo)x(?P=foo)x matches 'axaxax','bxbxbx' or 'cxcxcx'.</p></string> |
|
225 </property> |
|
226 <property name="text"> |
|
227 <string>...</string> |
|
228 </property> |
|
229 </widget> |
|
230 </item> |
|
231 <item> |
|
232 <widget class="QToolButton" name="altnButton"> |
|
233 <property name="toolTip"> |
|
234 <string><b>Alternatives: '|'</b> |
|
235 <p>Select to insert the alternation symbol '|'. </p></string> |
|
236 </property> |
|
237 <property name="whatsThis"> |
|
238 <string><b>Alternatives: '|'</b> |
|
239 <p>Select to insert the alternation symbol '|'. The alternation is used to match a single regular expression out of |
|
240 several possible regular expressions. E.g. 'cat|dog|mouse|fish' matches words containing the word 'cat', 'dog','mouse' or 'fish'. |
|
241 Be aware that in the above example, the alternatives refer to whole or part of words. If you want to match exactly the |
|
242 words 'cat', 'dog', ... you should express the fact that you only want to match complete words: '\b(cat|dog|mouse|fish)\b'</p></string> |
|
243 </property> |
|
244 <property name="text"> |
|
245 <string>...</string> |
|
246 </property> |
|
247 </widget> |
|
248 </item> |
|
249 <item> |
|
250 <widget class="QToolButton" name="beglineButton"> |
|
251 <property name="toolTip"> |
|
252 <string><b>Begin of line: '^'</b> |
|
253 <p>Select to insert the start line character (^).</p></string> |
|
254 </property> |
|
255 <property name="whatsThis"> |
|
256 <string><b>Begin of line: '^'</b> |
|
257 <p>Select to insert the start line character (^). It is used to find some expressions at the begining of lines. |
|
258 E.g. '^[A-Z]' match lines starting with a capitalized character. </p></string> |
|
259 </property> |
|
260 <property name="text"> |
|
261 <string>...</string> |
|
262 </property> |
|
263 </widget> |
|
264 </item> |
|
265 <item> |
|
266 <widget class="QToolButton" name="endlineButton"> |
|
267 <property name="toolTip"> |
|
268 <string><b>End of line: '$'</b> |
|
269 <p>Select to insert the end of line character ($).</p></string> |
|
270 </property> |
|
271 <property name="whatsThis"> |
|
272 <string><b>End of line: '$'</b> |
|
273 <p>Select to insert the end of line character ($). It is used to find some expressions at the end of lines.</p></string> |
|
274 </property> |
|
275 <property name="text"> |
|
276 <string>...</string> |
|
277 </property> |
|
278 </widget> |
|
279 </item> |
|
280 <item> |
|
281 <widget class="QToolButton" name="wordboundButton"> |
|
282 <property name="toolTip"> |
|
283 <string><b>Word boundary</b> |
|
284 <p>Select to insert the word boudary character (\b).</p></string> |
|
285 </property> |
|
286 <property name="whatsThis"> |
|
287 <string><b>Word boundary</b> |
|
288 <p>Select to insert the word boudary character (\b). This character is used to express the fact that word |
|
289 must begin or end at this position. E.g. '\bcat\b' matches exactly the word 'cat' while 'concatenation' is ignored.</p></string> |
|
290 </property> |
|
291 <property name="text"> |
|
292 <string>...</string> |
|
293 </property> |
|
294 </widget> |
|
295 </item> |
|
296 <item> |
|
297 <widget class="QToolButton" name="nonwordboundButton"> |
|
298 <property name="toolTip"> |
|
299 <string><b>Non word boundary</b> |
|
300 <p>Select to insert the word boudary character (\B). \B is the negated version of \b.</p></string> |
|
301 </property> |
|
302 <property name="whatsThis"> |
|
303 <string><b>Non word boundary</b> |
|
304 <p>Select to insert the word boudary character (\B). \B is the negated version of \b. \B matches at every position where \b |
|
305 does not. Effectively, \B matches at any position between two word characters as well as at any position between two non-word characters.</p></string> |
|
306 </property> |
|
307 <property name="text"> |
|
308 <string>...</string> |
|
309 </property> |
|
310 </widget> |
|
311 </item> |
|
312 <item> |
|
313 <widget class="QToolButton" name="poslookaheadButton"> |
|
314 <property name="toolTip"> |
|
315 <string><b>Positive lookahead: (?=<i>regexpr</i>)</b> |
|
316 <p>Select to insert the positive lookhead brackets.</p></string> |
|
317 </property> |
|
318 <property name="whatsThis"> |
|
319 <string><b>Positive lookahead: (?=<i>regexpr</i>)</b> |
|
320 <p>Select to insert the positive lookhead brackets. Basically, positive lookhead is used to match a character only if followed by another one. |
|
321 Writting 'q(?=u)' means that you want to match the 'q' character only if it is followed by 'u'. In this statement 'u' is a trivial |
|
322 regexp which may be replaced by a more complex expression; q(?=[abc])' will match a 'q' if followed by either 'a', 'b' or 'c'.</p></string> |
|
323 </property> |
|
324 <property name="text"> |
|
325 <string>...</string> |
|
326 </property> |
|
327 </widget> |
|
328 </item> |
|
329 <item> |
|
330 <widget class="QToolButton" name="neglookaheadButton"> |
|
331 <property name="toolTip"> |
|
332 <string><b>Negative lookahead: (?!<i>regexpr</i>)</b> |
|
333 <p>Select to insert the negative lookhead brackets.</p></string> |
|
334 </property> |
|
335 <property name="whatsThis"> |
|
336 <string><b>Negative lookahead: (?!<i>regexpr</i>)</b> |
|
337 <p>Select to insert the negative lookhead brackets. Basically, negative lookhead is used to match a character only if it is not |
|
338 followed by a another one. Writting 'q(?!u)' means that you want to match 'q' only if it is not followed by 'u'. In this statement, 'u' is a |
|
339 trivial regexp which may be replaced by a more complex expression; 'q(?![abc])' will match a 'q' if it is followed by anything else than 'a', 'b' or 'c'.</p></string> |
|
340 </property> |
|
341 <property name="text"> |
|
342 <string>...</string> |
|
343 </property> |
|
344 </widget> |
|
345 </item> |
|
346 <item> |
|
347 <widget class="QToolButton" name="poslookbehindButton"> |
|
348 <property name="toolTip"> |
|
349 <string><b>Positive lookbehind: (?&lt;=<i>regexpr</i>)</b> |
|
350 <p>Select to insert the positive lookbehind brackets.</p></string> |
|
351 </property> |
|
352 <property name="whatsThis"> |
|
353 <string><b>Positive lookbehind: (?&lt;=<i>regexpr</i>)</b> |
|
354 <p>Select to insert the positive lookbehind brackets. Lookbehind has the same effect as lookahead, but works backwards. |
|
355 It is used to match a character only if preceded by another one. Writting '(?&lt;=u)q' means that you want to match the 'q' character |
|
356 only if it is preceded by 'u'. As with lookhead, 'u' may be replaced by a more complex expression; '(?&lt;=[abc])q' will match a 'q' if preceded by either 'a', 'b' or 'c'.</p></string> |
|
357 </property> |
|
358 <property name="text"> |
|
359 <string>...</string> |
|
360 </property> |
|
361 </widget> |
|
362 </item> |
|
363 <item> |
|
364 <widget class="QToolButton" name="neglookbehindButton"> |
|
365 <property name="toolTip"> |
|
366 <string><b>Negative lookbehind (?&lt;!<i>regexpr</i>)</b> |
|
367 <p>Select to insert the negative lookbehind brackets.</p></string> |
|
368 </property> |
|
369 <property name="whatsThis"> |
|
370 <string><b>Negative lookbehind (?&lt;!<i>regexpr</i>)</b> |
|
371 <p>Select to insert the negative lookbehind brackets. Lookbehind has the same effect as lookahead, |
|
372 but works backwards. It is used to match a character only if not preceded by another one. Writting '(?&lt;!u)q' means that you want to match the 'q' |
|
373 character only if it is not preceded by 'u'. As other lookaround, 'u' may be replaced by a more complex |
|
374 expression; '(?&lt;![abc])q' will match a 'q' only if not preceded by either 'a', 'b' nor 'c'.</p></string> |
|
375 </property> |
|
376 <property name="text"> |
|
377 <string>...</string> |
|
378 </property> |
|
379 </widget> |
|
380 </item> |
|
381 <item> |
|
382 <spacer> |
|
383 <property name="orientation"> |
|
384 <enum>Qt::Horizontal</enum> |
|
385 </property> |
|
386 <property name="sizeType"> |
|
387 <enum>QSizePolicy::Fixed</enum> |
|
388 </property> |
|
389 <property name="sizeHint" stdset="0"> |
|
390 <size> |
|
391 <width>16</width> |
|
392 <height>20</height> |
|
393 </size> |
|
394 </property> |
|
395 </spacer> |
|
396 </item> |
|
397 <item> |
|
398 <widget class="QToolButton" name="undoButton"> |
|
399 <property name="toolTip"> |
|
400 <string><b>Undo last edit</b></string> |
|
401 </property> |
|
402 <property name="text"> |
|
403 <string>...</string> |
|
404 </property> |
|
405 </widget> |
|
406 </item> |
|
407 <item> |
|
408 <widget class="QToolButton" name="redoButton"> |
|
409 <property name="toolTip"> |
|
410 <string><b>Redo last edit</b></string> |
|
411 </property> |
|
412 <property name="text"> |
|
413 <string>...</string> |
|
414 </property> |
|
415 </widget> |
|
416 </item> |
|
417 <item> |
|
418 <spacer> |
|
419 <property name="orientation"> |
|
420 <enum>Qt::Horizontal</enum> |
|
421 </property> |
|
422 <property name="sizeType"> |
|
423 <enum>QSizePolicy::Expanding</enum> |
|
424 </property> |
|
425 <property name="sizeHint" stdset="0"> |
|
426 <size> |
|
427 <width>20</width> |
|
428 <height>20</height> |
|
429 </size> |
|
430 </property> |
|
431 </spacer> |
|
432 </item> |
|
433 </layout> |
|
434 </item> |
|
435 <item> |
|
436 <layout class="QGridLayout"> |
|
437 <item row="0" column="0"> |
|
438 <widget class="QLabel" name="textLabel1"> |
|
439 <property name="text"> |
|
440 <string>Regexp:</string> |
|
441 </property> |
|
442 <property name="alignment"> |
|
443 <set>Qt::AlignTop</set> |
|
444 </property> |
|
445 </widget> |
|
446 </item> |
|
447 <item row="0" column="1"> |
|
448 <widget class="QTextEdit" name="regexpTextEdit"> |
|
449 <property name="sizePolicy"> |
|
450 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
|
451 <horstretch>0</horstretch> |
|
452 <verstretch>1</verstretch> |
|
453 </sizepolicy> |
|
454 </property> |
|
455 <property name="acceptRichText"> |
|
456 <bool>false</bool> |
|
457 </property> |
|
458 </widget> |
|
459 </item> |
|
460 <item row="3" column="0" colspan="2"> |
|
461 <widget class="QTableWidget" name="resultTable"> |
|
462 <property name="sizePolicy"> |
|
463 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
|
464 <horstretch>0</horstretch> |
|
465 <verstretch>2</verstretch> |
|
466 </sizepolicy> |
|
467 </property> |
|
468 <property name="editTriggers"> |
|
469 <set>QAbstractItemView::NoEditTriggers</set> |
|
470 </property> |
|
471 </widget> |
|
472 </item> |
|
473 <item row="2" column="0" colspan="2"> |
|
474 <layout class="QGridLayout"> |
|
475 <item row="0" column="1"> |
|
476 <widget class="QCheckBox" name="multilineCheckBox"> |
|
477 <property name="toolTip"> |
|
478 <string>"^" matches beginning of line, "$" matches end of line</string> |
|
479 </property> |
|
480 <property name="text"> |
|
481 <string>Match Linebreaks</string> |
|
482 </property> |
|
483 </widget> |
|
484 </item> |
|
485 <item row="1" column="2"> |
|
486 <widget class="QCheckBox" name="unicodeCheckBox"> |
|
487 <property name="text"> |
|
488 <string>Unicode</string> |
|
489 </property> |
|
490 </widget> |
|
491 </item> |
|
492 <item row="1" column="0"> |
|
493 <widget class="QCheckBox" name="verboseCheckBox"> |
|
494 <property name="text"> |
|
495 <string>Verbose Regexp</string> |
|
496 </property> |
|
497 </widget> |
|
498 </item> |
|
499 <item row="0" column="0"> |
|
500 <widget class="QCheckBox" name="caseSensitiveCheckBox"> |
|
501 <property name="text"> |
|
502 <string>Case Sensitive</string> |
|
503 </property> |
|
504 <property name="checked"> |
|
505 <bool>true</bool> |
|
506 </property> |
|
507 </widget> |
|
508 </item> |
|
509 <item row="1" column="1"> |
|
510 <widget class="QCheckBox" name="localeCheckBox"> |
|
511 <property name="text"> |
|
512 <string>Observe Locale</string> |
|
513 </property> |
|
514 </widget> |
|
515 </item> |
|
516 <item row="0" column="2"> |
|
517 <widget class="QCheckBox" name="dotallCheckBox"> |
|
518 <property name="toolTip"> |
|
519 <string>"." matches linebreaks as well</string> |
|
520 </property> |
|
521 <property name="text"> |
|
522 <string>Dot matches Linebreak</string> |
|
523 </property> |
|
524 </widget> |
|
525 </item> |
|
526 </layout> |
|
527 </item> |
|
528 <item row="1" column="0"> |
|
529 <widget class="QLabel" name="textLabel2"> |
|
530 <property name="text"> |
|
531 <string>Text:</string> |
|
532 </property> |
|
533 <property name="alignment"> |
|
534 <set>Qt::AlignTop</set> |
|
535 </property> |
|
536 </widget> |
|
537 </item> |
|
538 <item row="1" column="1"> |
|
539 <widget class="QTextEdit" name="textTextEdit"> |
|
540 <property name="sizePolicy"> |
|
541 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
|
542 <horstretch>0</horstretch> |
|
543 <verstretch>1</verstretch> |
|
544 </sizepolicy> |
|
545 </property> |
|
546 <property name="acceptRichText"> |
|
547 <bool>false</bool> |
|
548 </property> |
|
549 </widget> |
|
550 </item> |
|
551 </layout> |
|
552 </item> |
|
553 <item> |
|
554 <widget class="QDialogButtonBox" name="buttonBox"> |
|
555 <property name="orientation"> |
|
556 <enum>Qt::Horizontal</enum> |
|
557 </property> |
|
558 <property name="standardButtons"> |
|
559 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close|QDialogButtonBox::Ok</set> |
|
560 </property> |
|
561 </widget> |
|
562 </item> |
|
563 </layout> |
|
564 </widget> |
|
565 <layoutdefault spacing="6" margin="6"/> |
|
566 <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> |
|
567 <tabstops> |
|
568 <tabstop>py2Button</tabstop> |
|
569 <tabstop>py3Button</tabstop> |
|
570 <tabstop>variableLineEdit</tabstop> |
|
571 <tabstop>importCheckBox</tabstop> |
|
572 <tabstop>commentButton</tabstop> |
|
573 <tabstop>charButton</tabstop> |
|
574 <tabstop>anycharButton</tabstop> |
|
575 <tabstop>repeatButton</tabstop> |
|
576 <tabstop>nonGroupButton</tabstop> |
|
577 <tabstop>groupButton</tabstop> |
|
578 <tabstop>namedGroupButton</tabstop> |
|
579 <tabstop>namedReferenceButton</tabstop> |
|
580 <tabstop>altnButton</tabstop> |
|
581 <tabstop>beglineButton</tabstop> |
|
582 <tabstop>endlineButton</tabstop> |
|
583 <tabstop>wordboundButton</tabstop> |
|
584 <tabstop>nonwordboundButton</tabstop> |
|
585 <tabstop>poslookaheadButton</tabstop> |
|
586 <tabstop>neglookaheadButton</tabstop> |
|
587 <tabstop>poslookbehindButton</tabstop> |
|
588 <tabstop>neglookbehindButton</tabstop> |
|
589 <tabstop>undoButton</tabstop> |
|
590 <tabstop>redoButton</tabstop> |
|
591 <tabstop>regexpTextEdit</tabstop> |
|
592 <tabstop>textTextEdit</tabstop> |
|
593 <tabstop>caseSensitiveCheckBox</tabstop> |
|
594 <tabstop>verboseCheckBox</tabstop> |
|
595 <tabstop>multilineCheckBox</tabstop> |
|
596 <tabstop>localeCheckBox</tabstop> |
|
597 <tabstop>dotallCheckBox</tabstop> |
|
598 <tabstop>unicodeCheckBox</tabstop> |
|
599 <tabstop>resultTable</tabstop> |
|
600 <tabstop>buttonBox</tabstop> |
|
601 </tabstops> |
|
602 <resources/> |
|
603 <connections/> |
|
604 </ui> |