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