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