|
Class: StringSearchToolForTextView (in Tools)
Object
|
+--Model
|
+--ApplicationModel
|
+--Tools::StringSearchTool
|
+--Tools::StringSearchToolForTextView
- Package:
- stx:libtool
- Category:
- Interface-Tools
- Version:
- rev:
1.25
date: 2023/11/29 18:41:09
- user: cg
- file: Tools__StringSearchToolForTextView.st directory: libtool
- module: stx stc-classLibrary: libtool
documentation to be added.
class:
<a short class summary here, describing what instances represent>
responsibilities:
<describing what my main role is>
collaborators:
<describing with whom and how I talk to>
API:
<public api and main messages>
example:
<a one-line examples on how to use - can also be in a separate example method>
implementation:
<implementation points>
[instance variables:]
[class variables:]
copyrightCOPYRIGHT (c) 2008 by eXept Software AG
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
accessing
-
lastMatch
-
-
lastMatch: aBoolean
-
-
lastMatchRegex
-
-
lastMatchRegex: aBoolean
-
interface specs
-
windowSpec
-
This resource specification was automatically generated
by the UIPainter of ST/X.
Usage example(s):
UIPainter new openOnClass:Tools::StringSearchToolForTextView andSelector:#windowSpec
Tools::StringSearchToolForTextView new openInterface:#windowSpec
Tools::StringSearchToolForTextView open
|
-
windowSpec_old
-
This resource specification was automatically generated
by the UIPainter of ST/X.
Usage example(s):
UIPainter new openOnClass:Tools::StringSearchToolForTextView andSelector:#windowSpec_old
Tools::StringSearchToolForTextView new openInterface:#windowSpec_old
|
accessing
-
textView
-
return my textView component
-
textView: something
-
aspects
-
matchCheckboxVisible
-
-
matchHolder
-
-
regexMatchHolder
-
change & update
-
matchHolderChanged
-
Modified (format): / 26-05-2021 / 23:08:50 / cg
-
searchTextModifiedHolderChanged
-
Transcript showCR: searchPattern.
initialization & release
-
initialize
-
-
postBuildSearchTextView: anEditFieldView
-
misc
-
trimMatchPattern: aString
-
'***foo***' trimForWhich: [:ch | ch = $*]. => 'foo'
'foo***' trimForWhich: [:ch | ch = $*]. => 'foo'
'***foo' trimForWhich: [:ch | ch = $*]. => 'foo'
'***f***o***o***' trimForWhich: [:ch | ch = $*]. => 'f***o***o'
'foo' trimForWhich: [:ch | ch = $*]. => 'foo'
public
-
crAction
-
-
escapePressed
-
-
returnFocusToTextView
-
-
searchPreviousTextReachBeginning
-
searching
-
hideSearchBar
-
-
searchNextTextFromBeginning
-
(comment from inherited method)
self parent
-
searchNextTextIncludingCurrentSelection: includeCurrentSelection
-
Modified (format): / 26-05-2021 / 23:12:14 / cg
-
searchPreviousText
-
(comment from inherited method)
self setFocusToSearchTextView.
-
searchPreviousTextFromEnd
-
(comment from inherited method)
self parent
Notice that everything between [exBegin] and [exEnd] is extracted by the html-doc generator
to create nicely formatted and clickable executable examples in the generated html-doc.
(see the browser's class-documentation menu items for more)
opening the application:
Tools::StringSearchToolForTextView open
|
opening the application on some model:
Tools::StringSearchToolForTextView openOn:aModel
|
|