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