76 <item> |
76 <item> |
77 <widget class="QToolButton" name="undoButton"> |
77 <widget class="QToolButton" name="undoButton"> |
78 <property name="toolTip"> |
78 <property name="toolTip"> |
79 <string><b>Undo last edit</b></string> |
79 <string><b>Undo last edit</b></string> |
80 </property> |
80 </property> |
81 <property name="text"> |
|
82 <string>...</string> |
|
83 </property> |
|
84 </widget> |
81 </widget> |
85 </item> |
82 </item> |
86 <item> |
83 <item> |
87 <widget class="QToolButton" name="redoButton"> |
84 <widget class="QToolButton" name="redoButton"> |
88 <property name="toolTip"> |
85 <property name="toolTip"> |
89 <string><b>Redo last edit</b></string> |
86 <string><b>Redo last edit</b></string> |
90 </property> |
|
91 <property name="text"> |
|
92 <string>...</string> |
|
93 </property> |
87 </property> |
94 </widget> |
88 </widget> |
95 </item> |
89 </item> |
96 <item> |
90 <item> |
97 <spacer name="horizontalSpacer_2"> |
91 <spacer name="horizontalSpacer_2"> |
109 </layout> |
103 </layout> |
110 </item> |
104 </item> |
111 <item> |
105 <item> |
112 <widget class="QFrame" name="regexpButtonsFrame"> |
106 <widget class="QFrame" name="regexpButtonsFrame"> |
113 <layout class="QHBoxLayout" name="horizontalLayout"> |
107 <layout class="QHBoxLayout" name="horizontalLayout"> |
114 <property name="margin"> |
108 <property name="leftMargin"> |
|
109 <number>0</number> |
|
110 </property> |
|
111 <property name="topMargin"> |
|
112 <number>0</number> |
|
113 </property> |
|
114 <property name="rightMargin"> |
|
115 <number>0</number> |
|
116 </property> |
|
117 <property name="bottomMargin"> |
115 <number>0</number> |
118 <number>0</number> |
116 </property> |
119 </property> |
117 <item> |
120 <item> |
118 <widget class="QToolButton" name="charButton"> |
121 <widget class="QToolButton" name="charButton"> |
119 <property name="toolTip"> |
122 <property name="toolTip"> |
120 <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> |
123 <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> |
121 </property> |
124 </property> |
122 <property name="whatsThis"> |
125 <property name="whatsThis"> |
123 <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></string> |
126 <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></string> |
124 </property> |
|
125 <property name="text"> |
|
126 <string>...</string> |
|
127 </property> |
127 </property> |
128 </widget> |
128 </widget> |
129 </item> |
129 </item> |
130 <item> |
130 <item> |
131 <widget class="QToolButton" name="anycharButton"> |
131 <widget class="QToolButton" name="anycharButton"> |
137 <string><b>Any character: '.'</b> |
137 <string><b>Any character: '.'</b> |
138 <p>Select to insert a dot (.) in your regexp. The dot matches a single character, except line break characters (by default). |
138 <p>Select to insert a dot (.) in your regexp. The dot matches a single character, except line break characters (by default). |
139 E.g. 'gr.y' matches 'gray', 'grey', 'gr%y', etc. Use the dot sparingly. Often, a character class or negated |
139 E.g. 'gr.y' matches 'gray', 'grey', 'gr%y', etc. Use the dot sparingly. Often, a character class or negated |
140 character class is faster and more precise.</p></string> |
140 character class is faster and more precise.</p></string> |
141 </property> |
141 </property> |
142 <property name="text"> |
|
143 <string>...</string> |
|
144 </property> |
|
145 </widget> |
142 </widget> |
146 </item> |
143 </item> |
147 <item> |
144 <item> |
148 <widget class="QToolButton" name="repeatButton"> |
145 <widget class="QToolButton" name="repeatButton"> |
149 <property name="toolTip"> |
146 <property name="toolTip"> |
151 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
148 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
152 </property> |
149 </property> |
153 <property name="whatsThis"> |
150 <property name="whatsThis"> |
154 <string><b>Repeat contents</b> |
151 <string><b>Repeat contents</b> |
155 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
152 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
156 </property> |
|
157 <property name="text"> |
|
158 <string>...</string> |
|
159 </property> |
153 </property> |
160 </widget> |
154 </widget> |
161 </item> |
155 </item> |
162 <item> |
156 <item> |
163 <widget class="QToolButton" name="nonGroupButton"> |
157 <widget class="QToolButton" name="nonGroupButton"> |
168 <property name="whatsThis"> |
162 <property name="whatsThis"> |
169 <string><b>Non capturing parentheses: (?:)</b> |
163 <string><b>Non capturing parentheses: (?:)</b> |
170 <p>Select to insert some non capturing brackets. It can be used to apply a regexp quantifier (eg. '?' or '+') to the entire |
164 <p>Select to insert some non capturing brackets. It can be used to apply a regexp quantifier (eg. '?' or '+') to the entire |
171 group of characters inside the brakets. E.g. the regex 'Set(?:Value)?' matches 'Set' or 'SetValue'. The '?:' inside the brakets |
165 group of characters inside the brakets. E.g. the regex 'Set(?:Value)?' matches 'Set' or 'SetValue'. The '?:' inside the brakets |
172 means that the content of the match (called the backreference) is not stored for further use.</p></string> |
166 means that the content of the match (called the backreference) is not stored for further use.</p></string> |
173 </property> |
|
174 <property name="text"> |
|
175 <string>...</string> |
|
176 </property> |
167 </property> |
177 </widget> |
168 </widget> |
178 </item> |
169 </item> |
179 <item> |
170 <item> |
180 <widget class="QToolButton" name="groupButton"> |
171 <widget class="QToolButton" name="groupButton"> |
188 characters inside the brakets. E.g. the regex 'Set(Value)?' matches 'Set' or 'SetValue'. Contrary to non-capturing parentheses, |
179 characters inside the brakets. E.g. the regex 'Set(Value)?' matches 'Set' or 'SetValue'. Contrary to non-capturing parentheses, |
189 the backreference matched inside the brakets is stored for further use (i.e. 'Value' in the second example above). |
180 the backreference matched inside the brakets is stored for further use (i.e. 'Value' in the second example above). |
190 One can access the backereference with the '\1' expression. </p> |
181 One can access the backereference with the '\1' expression. </p> |
191 <p>E.g. '([a-c])x\1x\1' will match 'axaxa', 'bxbxb' and 'cxcxc'.</p></string> |
182 <p>E.g. '([a-c])x\1x\1' will match 'axaxa', 'bxbxb' and 'cxcxc'.</p></string> |
192 </property> |
183 </property> |
193 <property name="text"> |
|
194 <string>...</string> |
|
195 </property> |
|
196 </widget> |
184 </widget> |
197 </item> |
185 </item> |
198 <item> |
186 <item> |
199 <widget class="QToolButton" name="altnButton"> |
187 <widget class="QToolButton" name="altnButton"> |
200 <property name="toolTip"> |
188 <property name="toolTip"> |
206 <p>Select to insert the alternation symbol '|'. The alternation is used to match a single regular expression out of |
194 <p>Select to insert the alternation symbol '|'. The alternation is used to match a single regular expression out of |
207 several possible regular expressions. E.g. 'cat|dog|mouse|fish' matches words containing the word 'cat', 'dog','mouse' or 'fish'. |
195 several possible regular expressions. E.g. 'cat|dog|mouse|fish' matches words containing the word 'cat', 'dog','mouse' or 'fish'. |
208 Be aware that in the above example, the alternatives refer to whole or part of words. If you want to match exactly the |
196 Be aware that in the above example, the alternatives refer to whole or part of words. If you want to match exactly the |
209 words 'cat', 'dog', ... you should express the fact that you only want to match complete words: '\b(cat|dog|mouse|fish)\b'</p></string> |
197 words 'cat', 'dog', ... you should express the fact that you only want to match complete words: '\b(cat|dog|mouse|fish)\b'</p></string> |
210 </property> |
198 </property> |
211 <property name="text"> |
|
212 <string>...</string> |
|
213 </property> |
|
214 </widget> |
199 </widget> |
215 </item> |
200 </item> |
216 <item> |
201 <item> |
217 <widget class="QToolButton" name="beglineButton"> |
202 <widget class="QToolButton" name="beglineButton"> |
218 <property name="toolTip"> |
203 <property name="toolTip"> |
222 <property name="whatsThis"> |
207 <property name="whatsThis"> |
223 <string><b>Begin of line: '^'</b> |
208 <string><b>Begin of line: '^'</b> |
224 <p>Select to insert the start line character (^). It is used to find some expressions at the begining of lines. |
209 <p>Select to insert the start line character (^). It is used to find some expressions at the begining of lines. |
225 E.g. '^[A-Z]' match lines starting with a capitalized character. </p></string> |
210 E.g. '^[A-Z]' match lines starting with a capitalized character. </p></string> |
226 </property> |
211 </property> |
227 <property name="text"> |
|
228 <string>...</string> |
|
229 </property> |
|
230 </widget> |
212 </widget> |
231 </item> |
213 </item> |
232 <item> |
214 <item> |
233 <widget class="QToolButton" name="endlineButton"> |
215 <widget class="QToolButton" name="endlineButton"> |
234 <property name="toolTip"> |
216 <property name="toolTip"> |
236 <p>Select to insert the end of line character ($).</p></string> |
218 <p>Select to insert the end of line character ($).</p></string> |
237 </property> |
219 </property> |
238 <property name="whatsThis"> |
220 <property name="whatsThis"> |
239 <string><b>End of line: '$'</b> |
221 <string><b>End of line: '$'</b> |
240 <p>Select to insert the end of line character ($). It is used to find some expressions at the end of lines.</p></string> |
222 <p>Select to insert the end of line character ($). It is used to find some expressions at the end of lines.</p></string> |
241 </property> |
|
242 <property name="text"> |
|
243 <string>...</string> |
|
244 </property> |
223 </property> |
245 </widget> |
224 </widget> |
246 </item> |
225 </item> |
247 <item> |
226 <item> |
248 <widget class="QToolButton" name="wordboundButton"> |
227 <widget class="QToolButton" name="wordboundButton"> |
253 <property name="whatsThis"> |
232 <property name="whatsThis"> |
254 <string><b>Word boundary</b> |
233 <string><b>Word boundary</b> |
255 <p>Select to insert the word boudary character (\b). This character is used to express the fact that word |
234 <p>Select to insert the word boudary character (\b). This character is used to express the fact that word |
256 must begin or end at this position. E.g. '\bcat\b' matches exactly the word 'cat' while 'concatenation' is ignored.</p></string> |
235 must begin or end at this position. E.g. '\bcat\b' matches exactly the word 'cat' while 'concatenation' is ignored.</p></string> |
257 </property> |
236 </property> |
258 <property name="text"> |
|
259 <string>...</string> |
|
260 </property> |
|
261 </widget> |
237 </widget> |
262 </item> |
238 </item> |
263 <item> |
239 <item> |
264 <widget class="QToolButton" name="nonwordboundButton"> |
240 <widget class="QToolButton" name="nonwordboundButton"> |
265 <property name="toolTip"> |
241 <property name="toolTip"> |
268 </property> |
244 </property> |
269 <property name="whatsThis"> |
245 <property name="whatsThis"> |
270 <string><b>Non word boundary</b> |
246 <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 |
247 <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> |
248 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 <property name="text"> |
|
275 <string>...</string> |
|
276 </property> |
249 </property> |
277 </widget> |
250 </widget> |
278 </item> |
251 </item> |
279 <item> |
252 <item> |
280 <widget class="QToolButton" name="poslookaheadButton"> |
253 <widget class="QToolButton" name="poslookaheadButton"> |
286 <string><b>Positive lookahead: (?=<i>regexpr</i>)</b> |
259 <string><b>Positive lookahead: (?=<i>regexpr</i>)</b> |
287 <p>Select to insert the positive lookhead brackets. Basically, positive lookhead is used to match a character only if followed by another one. |
260 <p>Select to insert the positive lookhead brackets. Basically, positive lookhead is used to match a character only if followed by another one. |
288 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 |
261 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 |
289 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> |
262 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> |
290 </property> |
263 </property> |
291 <property name="text"> |
|
292 <string>...</string> |
|
293 </property> |
|
294 </widget> |
264 </widget> |
295 </item> |
265 </item> |
296 <item> |
266 <item> |
297 <widget class="QToolButton" name="neglookaheadButton"> |
267 <widget class="QToolButton" name="neglookaheadButton"> |
298 <property name="toolTip"> |
268 <property name="toolTip"> |
302 <property name="whatsThis"> |
272 <property name="whatsThis"> |
303 <string><b>Negative lookahead: (?!<i>regexpr</i>)</b> |
273 <string><b>Negative lookahead: (?!<i>regexpr</i>)</b> |
304 <p>Select to insert the negative lookhead brackets. Basically, negative lookhead is used to match a character only if it is not |
274 <p>Select to insert the negative lookhead brackets. Basically, negative lookhead is used to match a character only if it is not |
305 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 |
275 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 |
306 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> |
276 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> |
307 </property> |
|
308 <property name="text"> |
|
309 <string>...</string> |
|
310 </property> |
277 </property> |
311 </widget> |
278 </widget> |
312 </item> |
279 </item> |
313 <item> |
280 <item> |
314 <spacer> |
281 <spacer> |
330 </widget> |
297 </widget> |
331 </item> |
298 </item> |
332 <item> |
299 <item> |
333 <widget class="QFrame" name="wildcardButtonsFrame"> |
300 <widget class="QFrame" name="wildcardButtonsFrame"> |
334 <layout class="QHBoxLayout" name="horizontalLayout_2"> |
301 <layout class="QHBoxLayout" name="horizontalLayout_2"> |
335 <property name="margin"> |
302 <property name="leftMargin"> |
|
303 <number>0</number> |
|
304 </property> |
|
305 <property name="topMargin"> |
|
306 <number>0</number> |
|
307 </property> |
|
308 <property name="rightMargin"> |
|
309 <number>0</number> |
|
310 </property> |
|
311 <property name="bottomMargin"> |
336 <number>0</number> |
312 <number>0</number> |
337 </property> |
313 </property> |
338 <item> |
314 <item> |
339 <widget class="QToolButton" name="wildcardCharButton"> |
315 <widget class="QToolButton" name="wildcardCharButton"> |
340 <property name="toolTip"> |
316 <property name="toolTip"> |
341 <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> |
317 <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> |
342 </property> |
318 </property> |
343 <property name="whatsThis"> |
319 <property name="whatsThis"> |
344 <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></string> |
320 <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></string> |
345 </property> |
|
346 <property name="text"> |
|
347 <string>...</string> |
|
348 </property> |
321 </property> |
349 </widget> |
322 </widget> |
350 </item> |
323 </item> |
351 <item> |
324 <item> |
352 <widget class="QToolButton" name="wildcardAnycharButton"> |
325 <widget class="QToolButton" name="wildcardAnycharButton"> |
357 <property name="whatsThis"> |
330 <property name="whatsThis"> |
358 <string><b>Any character: '.'</b> |
331 <string><b>Any character: '.'</b> |
359 <p>Select to insert a question mark (?) in your regexp. The question mark matches a single character. |
332 <p>Select to insert a question mark (?) in your regexp. The question mark matches a single character. |
360 E.g. 'gr?y' matches 'gray', 'grey', 'gr%y', etc.</p></string> |
333 E.g. 'gr?y' matches 'gray', 'grey', 'gr%y', etc.</p></string> |
361 </property> |
334 </property> |
362 <property name="text"> |
|
363 <string>...</string> |
|
364 </property> |
|
365 </widget> |
335 </widget> |
366 </item> |
336 </item> |
367 <item> |
337 <item> |
368 <widget class="QToolButton" name="wildcardRepeatButton"> |
338 <widget class="QToolButton" name="wildcardRepeatButton"> |
369 <property name="toolTip"> |
339 <property name="toolTip"> |
371 <p>Inserts a repetition (*) character into the regexp.</p></string> |
341 <p>Inserts a repetition (*) character into the regexp.</p></string> |
372 </property> |
342 </property> |
373 <property name="whatsThis"> |
343 <property name="whatsThis"> |
374 <string><b>Repeat contents</b> |
344 <string><b>Repeat contents</b> |
375 <p>Inserts a repetition (*) character into the regexp. That will match zero or more of any character.</p></string> |
345 <p>Inserts a repetition (*) character into the regexp. That will match zero or more of any character.</p></string> |
376 </property> |
|
377 <property name="text"> |
|
378 <string>...</string> |
|
379 </property> |
346 </property> |
380 </widget> |
347 </widget> |
381 </item> |
348 </item> |
382 <item> |
349 <item> |
383 <spacer name="horizontalSpacer"> |
350 <spacer name="horizontalSpacer"> |
396 </widget> |
363 </widget> |
397 </item> |
364 </item> |
398 <item> |
365 <item> |
399 <widget class="QFrame" name="w3cButtonsFrame"> |
366 <widget class="QFrame" name="w3cButtonsFrame"> |
400 <layout class="QHBoxLayout" name="horizontalLayout_4"> |
367 <layout class="QHBoxLayout" name="horizontalLayout_4"> |
401 <property name="margin"> |
368 <property name="leftMargin"> |
|
369 <number>0</number> |
|
370 </property> |
|
371 <property name="topMargin"> |
|
372 <number>0</number> |
|
373 </property> |
|
374 <property name="rightMargin"> |
|
375 <number>0</number> |
|
376 </property> |
|
377 <property name="bottomMargin"> |
402 <number>0</number> |
378 <number>0</number> |
403 </property> |
379 </property> |
404 <item> |
380 <item> |
405 <widget class="QToolButton" name="w3cCharButton"> |
381 <widget class="QToolButton" name="w3cCharButton"> |
406 <property name="toolTip"> |
382 <property name="toolTip"> |
407 <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> |
383 <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> |
408 </property> |
384 </property> |
409 <property name="whatsThis"> |
385 <property name="whatsThis"> |
410 <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></string> |
386 <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></string> |
411 </property> |
|
412 <property name="text"> |
|
413 <string>...</string> |
|
414 </property> |
387 </property> |
415 </widget> |
388 </widget> |
416 </item> |
389 </item> |
417 <item> |
390 <item> |
418 <widget class="QToolButton" name="w3cAnycharButton"> |
391 <widget class="QToolButton" name="w3cAnycharButton"> |
424 <string><b>Any character: '.'</b> |
397 <string><b>Any character: '.'</b> |
425 <p>Select to insert a dot (.) in your regexp. The dot matches a single character, except line break characters (by default). |
398 <p>Select to insert a dot (.) in your regexp. The dot matches a single character, except line break characters (by default). |
426 E.g. 'gr.y' matches 'gray', 'grey', 'gr%y', etc. Use the dot sparingly. Often, a character class or negated |
399 E.g. 'gr.y' matches 'gray', 'grey', 'gr%y', etc. Use the dot sparingly. Often, a character class or negated |
427 character class is faster and more precise.</p></string> |
400 character class is faster and more precise.</p></string> |
428 </property> |
401 </property> |
429 <property name="text"> |
|
430 <string>...</string> |
|
431 </property> |
|
432 </widget> |
402 </widget> |
433 </item> |
403 </item> |
434 <item> |
404 <item> |
435 <widget class="QToolButton" name="w3cRepeatButton"> |
405 <widget class="QToolButton" name="w3cRepeatButton"> |
436 <property name="toolTip"> |
406 <property name="toolTip"> |
438 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
408 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
439 </property> |
409 </property> |
440 <property name="whatsThis"> |
410 <property name="whatsThis"> |
441 <string><b>Repeat contents</b> |
411 <string><b>Repeat contents</b> |
442 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
412 <p>Select a repetition condition via a specific dialog. This dialog will help to specify the allowed range for repetitions.</p></string> |
443 </property> |
|
444 <property name="text"> |
|
445 <string>...</string> |
|
446 </property> |
413 </property> |
447 </widget> |
414 </widget> |
448 </item> |
415 </item> |
449 <item> |
416 <item> |
450 <widget class="QToolButton" name="w3cGroupButton"> |
417 <widget class="QToolButton" name="w3cGroupButton"> |
455 <property name="whatsThis"> |
422 <property name="whatsThis"> |
456 <string><b>Group: ()</b> |
423 <string><b>Group: ()</b> |
457 <p>Select to insert some capturing brackets. They can be used to apply a regexp quantifier (e.g. '?' or '+') to the entire group of |
424 <p>Select to insert some capturing brackets. They can be used to apply a regexp quantifier (e.g. '?' or '+') to the entire group of |
458 characters inside the brakets. E.g. the regex 'Set(Value)?' matches 'Set' or 'SetValue'.</p></string> |
425 characters inside the brakets. E.g. the regex 'Set(Value)?' matches 'Set' or 'SetValue'.</p></string> |
459 </property> |
426 </property> |
460 <property name="text"> |
|
461 <string>...</string> |
|
462 </property> |
|
463 </widget> |
427 </widget> |
464 </item> |
428 </item> |
465 <item> |
429 <item> |
466 <widget class="QToolButton" name="w3cAltnButton"> |
430 <widget class="QToolButton" name="w3cAltnButton"> |
467 <property name="toolTip"> |
431 <property name="toolTip"> |
470 </property> |
434 </property> |
471 <property name="whatsThis"> |
435 <property name="whatsThis"> |
472 <string><b>Alternatives: '|'</b> |
436 <string><b>Alternatives: '|'</b> |
473 <p>Select to insert the alternation symbol '|'. The alternation is used to match a single regular expression out of |
437 <p>Select to insert the alternation symbol '|'. The alternation is used to match a single regular expression out of |
474 several possible regular expressions. E.g. 'cat|dog|mouse|fish' matches words containing the word 'cat', 'dog','mouse' or 'fish'.</p></string> |
438 several possible regular expressions. E.g. 'cat|dog|mouse|fish' matches words containing the word 'cat', 'dog','mouse' or 'fish'.</p></string> |
475 </property> |
|
476 <property name="text"> |
|
477 <string>...</string> |
|
478 </property> |
439 </property> |
479 </widget> |
440 </widget> |
480 </item> |
441 </item> |
481 <item> |
442 <item> |
482 <spacer name="horizontalSpacer_3"> |
443 <spacer name="horizontalSpacer_3"> |