SystemBrowser.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Jan 2020 21:02:47 +0100
changeset 19422 c6ca1c3e0fd7
parent 19367 e9085f37cd33
child 19546 f44be5ec67e5
permissions -rw-r--r--
#REFACTORING by exept class: MultiViewToolApplication added: #askForFile:default:forSave:thenDo: changed: #askForFile:default:thenDo: #askForFile:thenDo: #menuSaveAllAs #menuSaveAs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
     1
"{ Encoding: utf8 }"
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
     2
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     3
"
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     4
 COPYRIGHT (c) 1989 by Claus Gittinger
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
     5
              All Rights Reserved
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     6
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    12
 hereby transferred.
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    13
"
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
    14
"{ Package: 'stx:libtool' }"
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
    15
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
    16
"{ NameSpace: Smalltalk }"
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
    17
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    18
ApplicationModel subclass:#SystemBrowser
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    19
	instanceVariableNames:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    20
	classVariableNames:'CheckForInstancesWhenRemovingClasses ClassHistory
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    21
		EmphasisForDifferentPackage EmphasisForModifiedBuffer
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    22
		EmphasisForObsoleteCode EmphasisForReadVariable
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
    23
		EmphasisForWrittenVariable EmphasisForChangedCode
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
    24
		LastSearchPatterns LastClassSearchBoxShowedFullName'
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    25
	poolDictionaries:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    26
	category:'Interface-Browsers'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    27
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    28
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    29
Object subclass:#BrowserHistoryEntry
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    30
	instanceVariableNames:'className meta selector'
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    31
	classVariableNames:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    32
	poolDictionaries:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    33
	privateIn:SystemBrowser
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    34
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    35
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    36
!SystemBrowser class methodsFor:'documentation'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    37
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    38
copyright
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    39
"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    40
 COPYRIGHT (c) 1989 by Claus Gittinger
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
    41
              All Rights Reserved
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    42
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    43
 This software is furnished under a license and may be used
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    44
 only in accordance with the terms of that license and with the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    45
 inclusion of the above copyright notice.   This software may not
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    46
 be provided or otherwise made available to, or used by, any
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    47
 other person.  No title to or ownership of the software is
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    48
 hereby transferred.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    49
"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    50
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    51
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    52
documentation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    53
"
8893
27e01498c25b changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 8877
diff changeset
    54
    Notice: SystemBrowser has been completely rewritten to be an instance
16016
5a9f302b05df #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15976
diff changeset
    55
    of ApplicationModel. This rewritten version is found under Tools::NewSystemBrowser.
8893
27e01498c25b changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 8877
diff changeset
    56
    Because the class protocol here was used by many others, it is left here
27e01498c25b changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 8877
diff changeset
    57
    as an instance-less functionality provider only.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    58
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    59
    written winter 89 by claus.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    60
508
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    61
    [author:]
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    62
        Claus Gittinger
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    63
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    64
"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    65
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    66
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    67
!SystemBrowser class methodsFor:'initialization'!
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    68
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    69
initialize
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    70
    "Browser configuration;
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    71
     (values can be changed from your private startup file)"
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
    72
254
8258536e5bcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
    73
"/    self classResources.
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    74
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    75
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    76
     setting this to false, the removeClass function will remove
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    77
     classes WITHOUT checking for instances. Otherwise,
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    78
     it will check and let you confirm in case there are instances.
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    79
     Checking for instances may be a bit time consuming, though.
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    80
     The default is true - therefore, it will check
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    81
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    82
    CheckForInstancesWhenRemovingClasses := true
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    83
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    84
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    85
     CheckForInstancesWhenRemovingClasses := true
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    86
     CheckForInstancesWhenRemovingClasses := false
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    87
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    88
     SystemBrowser initialize
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    89
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    90
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    91
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    92
!SystemBrowser class methodsFor:'instance creation'!
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
    93
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    94
open
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    95
    "launch a standard browser"
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    96
2631
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    97
    self == SystemBrowser ifFalse:[
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    98
        ^ super open
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    99
    ].
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   100
105
claus
parents: 100
diff changeset
   101
    ^ self openOnDevice:(Screen current) 
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
   102
93
claus
parents: 90
diff changeset
   103
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   104
     SystemBrowser default open
93
claus
parents: 90
diff changeset
   105
     SystemBrowser open
claus
parents: 90
diff changeset
   106
    "
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   107
!
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   108
523
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   109
openInClass:aClass
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   110
    "launch a standard browser which immediately switches
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   111
     to aClass"
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   112
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   113
    ^ self openInClass:aClass selector:nil
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   114
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   115
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   116
     SystemBrowser default openInClass:Object
523
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   117
     SystemBrowser openInClass:Object
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   118
    "
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   119
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   120
    "Created: 30.4.1996 / 14:43:45 / cg"
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   121
!
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   122
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   123
openInClass:aClass selector:aSelector
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   124
    "launch a standard browser which immediately switches
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
   125
     to aClass ยป aSelector. Returns the browser"
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   126
3626
abf84bdbfdb2 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 3621
diff changeset
   127
    |brwsr classesName|
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   128
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   129
    brwsr := self openOnDevice:(Screen current).
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   130
    brwsr waitUntilVisible.
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   131
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   132
    aClass notNil ifTrue:[
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   133
"/        cls := aClass.
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   134
"/        cls isMeta ifTrue:[
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   135
"/            cls := aClass soleInstance
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   136
"/        ].
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   137
        aClass isMeta ifTrue:[
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   138
            brwsr instanceProtocol:false
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   139
        ].
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   140
        aClass isJavaClass ifTrue:[
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   141
            classesName := aClass fullName. 
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   142
        ] ifFalse:[
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   143
            classesName := aClass name. 
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   144
        ].
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   145
        brwsr switchToClassNamed:classesName.
1681
b209bdfbf762 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   146
        brwsr classSelectionChanged.
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   147
        aSelector notNil ifTrue:[
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   148
            brwsr switchToMethodNamed:aSelector.
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   149
        ]
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   150
    ].
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   151
    ^ brwsr
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   152
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   153
    "
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   154
     SystemBrowser openInClass:Object selector:#at:put:
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   155
     SystemBrowser openInClass:Object selector:nil
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   156
     SystemBrowser openInClass:nil selector:nil
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   157
    "
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   158
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   159
    "Created: / 22.11.1995 / 21:04:50 / cg"
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   160
    "Modified: / 5.11.2001 / 16:51:02 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   161
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   162
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   163
openOn:anEnvironment
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   164
    "open on a namespace"
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   165
    
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   166
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   167
        openOn:anEnvironment
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   168
        label:(self classResources string:'System Browser')
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   169
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   170
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   171
     SystemBrowser default openOn:Smalltalk
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   172
     SystemBrowser default openOn:Demos
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   173
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   174
     SystemBrowser openOn:Smalltalk
3589
f38e59e3ab76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3588
diff changeset
   175
     SystemBrowser openOn:Demos
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   176
    "
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   177
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   178
    "Modified: / 22-02-2019 / 10:14:45 / Claus Gittinger"
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   179
!
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   180
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   181
openOn:aClassEnvironment label:title
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   182
    "open on a namespace"
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   183
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   184
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   185
        openOn:aClassEnvironment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   186
        label:title 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   187
        onDevice:(Screen current)
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   188
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   189
    "Modified (comment): / 22-02-2019 / 10:14:37 / Claus Gittinger"
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   190
!
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   191
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   192
openOn:aClassEnvironment label:title onDevice:aDisplayDevice
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   193
    "open on a nameSpace"
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   194
    
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   195
    |browser|
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   196
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   197
    "/ to avoid errors when accessing the namespace...
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   198
    aClassEnvironment isNameSpace ifFalse:[
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   199
        ^ self openInClass:aClassEnvironment
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   200
    ].    
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   201
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   202
    browser := self 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   203
                newWithLabel:title
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   204
                setupBlock:[:browser | browser environment:aClassEnvironment.
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   205
                                       browser setupForAll]
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   206
                onDevice:aDisplayDevice.
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   207
    ^ browser
18614
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   208
260f4b5b37ac *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 18411
diff changeset
   209
    "Modified (format): / 22-02-2019 / 10:15:20 / Claus Gittinger"
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   210
!
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   211
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   212
openOnDevice:aDisplay
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   213
    "launch a standard browser on another display."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   214
2631
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   215
    self == SystemBrowser ifFalse:[
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   216
        ^ super openOnDevice:aDisplay
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   217
    ].
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   218
3519
0fef57de776a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   219
    ^ self 
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   220
        openOn:Smalltalk
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   221
        label:(self classResources string:'System Browser')
3519
0fef57de776a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   222
        onDevice:aDisplay
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   223
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   224
    "|d|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   225
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   226
     d := XWorkstation new initializeFor:'porty:0'.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   227
     d startDispatch.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   228
     SystemBrowser openOnDevice:d
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   229
    "
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   230
!
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   231
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   232
openOnRemoteImageOnHost:aHostName port:portOrNil
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   233
    |environment|
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   234
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   235
    environment := RemoteImage onHost:aHostName port:portOrNil.
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   236
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   237
        openOn:environment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   238
        label:(self classResources string:'RemoteImage Browser - %1' with:aHostName)
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   239
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   240
    "
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   241
     SystemBrowser openOnRemoteImageOnHost:'funkfix' port:nil
7998
0c63e8647d1f comment
Claus Gittinger <cg@exept.de>
parents: 7992
diff changeset
   242
     SystemBrowser openOnRemoteImageOnHost:'192.168.8.1' port:nil
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   243
    "
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   244
!
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   245
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   246
openOnSnapShotImage:anImageFileName
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   247
    |environment|
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   248
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   249
    environment := SnapShotImage for:anImageFileName.
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   250
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   251
        openOn:environment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   252
        label:(self classResources string:'Image Browser - %1' with:anImageFileName asFilename baseName)
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   253
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   254
    "
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
   255
     SystemBrowser openOnSnapShotImage:('/tmp/stmeas.img')
2824
85795055a3bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
   256
    "
85795055a3bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
   257
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
   258
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   259
!SystemBrowser class methodsFor:'Compatibility-ST80'!
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   260
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   261
newOnClass:aClass
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   262
    ^ self browseClass:aClass
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   263
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   264
    "Created: / 27.10.1997 / 20:10:39 / cg"
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   265
! !
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   266
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   267
!SystemBrowser class methodsFor:'accessing-history'!
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   268
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   269
addToHistory:aClass selector:aSelectorOrNil
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   270
    |newEntry oldEntry classHistory|
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   271
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   272
    (newEntry := self historyEntryForClass:aClass selector:aSelectorOrNil) isNil ifTrue:[^ self].
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   273
    classHistory := self classHistory.
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   274
10173
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   275
    oldEntry := classHistory detect:[:entry | (entry className = newEntry className) 
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   276
                                              "and:[entry selector = newEntry selector]"] ifNone:nil.
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   277
    oldEntry notNil ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   278
        classHistory removeIdentical:oldEntry.
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   279
    ].
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   280
    classHistory addFirst:newEntry.
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   281
    classHistory size > self visitedHistoryMaxSize ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   282
        classHistory removeLast
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   283
    ].
7524
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   284
    SystemBrowser changed:#visitedClassHistory with:classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   285
10173
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   286
    "Modified: / 05-07-2011 / 16:49:57 / cg"
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   287
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   288
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   289
checkClassHistory
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   290
    "checks the class history for non-existing classes"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   291
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   292
    "/ reverse, since we might modify while enumerating
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   293
    self classHistory reverseDo:[:histEntry|
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   294
        (Smalltalk at: (histEntry className) asSymbol) isBehavior
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   295
        ifFalse:[
10346
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   296
            self classHistory removeIdentical: histEntry
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   297
        ]
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   298
    ]
10346
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   299
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   300
    "Modified: / 20-07-2011 / 11:59:22 / cg"
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   301
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   302
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   303
classHistory
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   304
    ClassHistory isNil ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   305
        ClassHistory := List new
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   306
    ].
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   307
    ^ ClassHistory 
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   308
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   309
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   310
classHistory:newCollection
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   311
    ClassHistory := newCollection
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   312
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   313
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   314
emptyClassHistory
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   315
    "removes all class history entries"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   316
7524
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   317
    |classHistory|
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   318
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   319
    classHistory := self classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   320
    classHistory removeAll.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   321
    SystemBrowser changed:#visitedClassHistory with:classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   322
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   323
    "Modified: / 20-11-2006 / 12:29:42 / cg"
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   324
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   325
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   326
historyEntryForClass:aClass selector:aSelectorOrNil
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   327
    |newEntry meta cls|
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   328
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   329
    aClass isBehavior ifFalse:[^ nil].
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   330
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   331
    (meta := aClass isMeta) ifTrue:[
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   332
        cls := aClass theNonMetaclass.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   333
    ] ifFalse:[
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   334
        cls := aClass
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   335
    ].
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   336
    newEntry := BrowserHistoryEntry new.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   337
    newEntry 
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   338
        className:cls name
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   339
        meta:meta
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   340
        selector:aSelectorOrNil.
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   341
    ^ newEntry
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   342
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   343
    "Modified: / 24.2.2000 / 18:03:52 / cg"
9189
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   344
!
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   345
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   346
lastSearchPatterns
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   347
    ^ LastSearchPatterns
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   348
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   349
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   350
rememberSearchPattern:aString
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   351
    LastSearchPatterns isNil ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   352
        LastSearchPatterns := OrderedCollection new.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   353
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   354
    (LastSearchPatterns includes:aString) ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   355
        LastSearchPatterns remove:aString.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   356
    ] ifFalse:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   357
        LastSearchPatterns size > 20 ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   358
            LastSearchPatterns removeFirst
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   359
        ]
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   360
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   361
    LastSearchPatterns addFirst:aString.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   362
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   363
    "Modified: / 24-11-2010 / 12:51:31 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   364
    "Created: / 14-02-2012 / 14:00:24 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   365
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   366
9189
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   367
visitedClassNamesHistory
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   368
    ^ self classHistory
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   369
        collect:[:e | e className]
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   370
        thenSelect:[:nm | nm notEmptyOrNil]
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   371
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   372
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   373
     Tools::NewSystemBrowser visitedClassNamesHistory
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   374
    "
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   375
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   376
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   377
!SystemBrowser class methodsFor:'defaults'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   378
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   379
classHistoryMaxLevels
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   380
    ^ 3
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   381
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   382
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   383
classHistoryMaxSize
12954
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   384
    "returns maximum size of the visited class history"
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   385
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   386
    Screen current height < 768 ifTrue:[
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   387
        ^ 15
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   388
    ].
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   389
    ^ 20 "/ 15
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   390
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   391
    "Modified: / 10.2.2000 / 14:07:07 / cg"
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   392
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   393
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   394
default
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   395
    "convenient getter for the user's preference.
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   396
     Returns his choice of browser class"
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   397
15940
3562f909a860 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 15831
diff changeset
   398
    ^ UserPreferences systemBrowserClass
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   399
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   400
    "   
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   401
     SystemBrowser default open
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   402
    "
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   403
!
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   404
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   405
largeLabelFont
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   406
    ^ Label defaultFont scaled:1.2.
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   407
!
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   408
3549
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   409
methodTemplate
8877
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   410
    "return a method definition template string or nil"
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   411
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   412
    ^ SmalltalkLanguage instance methodTemplate
3549
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   413
!
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   414
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   415
visitedHistoryMaxSize
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   416
    "the maximum number of remembered visited-class-history entries"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   417
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   418
    ^ 15
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   419
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   420
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   421
!SystemBrowser class methodsFor:'defaults-presentation'!
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   422
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   423
emphasisForChangedCode
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   424
    ^ UserPreferences current emphasisForChangedCode.
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   425
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   426
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   427
     EmphasisForChangedCode := #underwave
4112
ed7af6707ad7 emphasisForChangedCode
tm
parents: 3834
diff changeset
   428
     EmphasisForChangedCode := #color->Color blue
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   429
     EmphasisForChangedCode := #color->Color red lightened lightened lightened
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   430
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   431
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   432
    "Created: / 31.10.2001 / 10:15:33 / cg"
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   433
!
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   434
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   435
emphasisForChangedCode:anEmphasis
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   436
    EmphasisForChangedCode := anEmphasis
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   437
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   438
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   439
     self emphasisForChangedCode:#underwave
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   440
     self emphasisForChangedCode:(#color->Color red lightened lightened lightened)
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   441
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   442
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   443
    "Created: / 31.10.2001 / 10:15:44 / cg"
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   444
!
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   445
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   446
emphasisForDifferentPackage
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   447
    ^ UserPreferences current emphasisForDifferentPackage.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   448
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   449
    "
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   450
     EmphasisForDifferentPackage := nil.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   451
     EmphasisForDifferentPackage := #underwave
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   452
     EmphasisForDifferentPackage := #color->Color red lightened lightened lightened
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   453
    "
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   454
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   455
    "Modified: / 31.10.2001 / 10:47:25 / cg"
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   456
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   457
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   458
emphasisForDifferentPackage:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   459
    EmphasisForDifferentPackage := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   460
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   461
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   462
     self emphasisForDifferentPackage:#underwave
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   463
     self emphasisForDifferentPackage:(#color->Color red lightened lightened lightened)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   464
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   465
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   466
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   467
emphasisForModifiedBuffer
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   468
    ^ UserPreferences current emphasisForModifiedBuffer.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   469
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   470
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   471
emphasisForModifiedBuffer:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   472
    EmphasisForModifiedBuffer := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   473
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   474
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   475
emphasisForObsoleteCode
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   476
    ^ UserPreferences current emphasisForObsoleteCode.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   477
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   478
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   479
emphasisForObsoleteCode:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   480
    EmphasisForObsoleteCode := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   481
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   482
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   483
emphasisForReadVariable
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   484
    ^ UserPreferences current emphasisForReadVariable.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   485
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   486
    "
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   487
     EmphasisForReadVariable := #underline
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   488
     EmphasisForReadVariable := Array with:#underline with:#underlineColor->Color yellow
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   489
    "
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   490
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   491
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   492
emphasisForReadVariable:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   493
    EmphasisForReadVariable := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   494
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   495
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   496
     self emphasisForReadVariable:#underline
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   497
     self emphasisForReadVariable:(Array with:#underline with:#underlineColor->Color yellow)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   498
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   499
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   500
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   501
emphasisForWrittenVariable
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   502
    ^ UserPreferences current emphasisForWrittenVariable.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   503
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   504
    "
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   505
     EmphasisForWrittenVariable := #underline
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   506
     EmphasisForWrittenVariable := Array with:#underline with:#underlineColor->Color red lightened
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   507
    "
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   508
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   509
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   510
emphasisForWrittenVariable:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   511
    EmphasisForWrittenVariable := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   512
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   513
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   514
     self emphasisForWrittenVariable:#underline
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   515
     self emphasisForWrittenVariable:(Array with:#underline with:#underlineColor->Color red lightened)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   516
    "
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   517
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   518
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   519
iconForClass:aClass
14103
288c15c69753 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13947
diff changeset
   520
    "ask the class for its browser symbol; 
288c15c69753 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13947
diff changeset
   521
     that's a key/selector in the ToolbarIconLibrary"
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   522
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   523
    aClass withAllSuperclassesDo:[:eachCls |
15540
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   524
        |icon iconSymbol |
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   525
15565
e6512d88f1ab class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15540
diff changeset
   526
        icon := [ eachCls toolListIcon ] on:Error do:[].
15540
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   527
        icon notNil ifTrue:[^ icon ].
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   528
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   529
        iconSymbol := eachCls iconInBrowserSymbol.
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   530
        iconSymbol notNil ifTrue:[
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   531
            ^ ToolbarIconLibrary perform:iconSymbol
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   532
        ].
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   533
    ].
15944
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   534
    (aClass isUtilityClass) ifTrue:[
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   535
        ^ ToolbarIconLibrary utilityClassIcon
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   536
    ].
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   537
    (aClass isAbstract) ifTrue:[
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   538
        ^ ToolbarIconLibrary abstractClassIcon
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   539
    ].
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   540
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   541
    ^ nil
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   542
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   543
    "Created: / 17-08-2006 / 09:11:27 / cg"
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   544
    "Modified: / 20-07-2007 / 09:01:43 / cg"
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   545
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   546
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   547
resourceIconForMethod:aMethod
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   548
    |resources|
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   549
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   550
    (resources := aMethod resources) isNil ifTrue:[^ nil].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   551
18302
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   552
    (resources includesKey:#todo) ifTrue:[
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   553
        ^ ToolbarIconLibrary underConstructionIcon11x11
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   554
    ].
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   555
    (resources includesKey:#obsolete) ifTrue:[
18411
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
   556
        ^ self obsoleteMethodIcon
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
   557
    ].
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
   558
    (resources includesKey:#deprecated) ifTrue:[
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   559
        ^ self deprecatedMethodIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   560
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   561
    (resources includesKey:#canvas) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   562
        ^ self canvasIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   563
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   564
    (resources includesKey:#menu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   565
        ^ self menuIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   566
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   567
    (resources includesKey:#image) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   568
        ^ self imageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   569
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   570
    (resources includesKey:#fileImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   571
        ^ self fileImageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   572
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   573
    (resources includesKey:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   574
        ^ self programImageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   575
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   576
    (resources includesKey:#help) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   577
        ^ self helpIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   578
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   579
    (resources includesKey:#programMenu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   580
        ^ self programMenuIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   581
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   582
    (resources includesKey:#tableColumns) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   583
        ^ self tableColumnsIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   584
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   585
    (resources includesKey:#tabList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   586
        ^ self tabListIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   587
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   588
    (resources includesKey:#hierarchicalList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   589
        ^ self hierarchicalListIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   590
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   591
    (resources includesKey:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   592
        ^ self programImageIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   593
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   594
    ^ nil
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   595
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   596
    "Created: / 17-08-2006 / 09:08:11 / cg"
18411
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
   597
    "Modified: / 21-09-2018 / 15:34:34 / Claus Gittinger"
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   598
! !
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   599
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   600
!SystemBrowser class methodsFor:'dialogs'!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   601
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   602
askForClassNameMatching:matchStringArg inEnvironment:anEnvironmentOrClassOrNil for:aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   603
    "open a dialog to ask for a class name.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   604
     env is either a nameSpace or a class (to ask for a private class)"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   605
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   606
    |classNames caselessMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   607
     substringMatchingNames caselessSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   608
     caselessWithoutPrefixSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   609
     lcMatchString subMatch lcSubMatch box className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   610
     needSearch cls env searchBlock searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   611
     idx pref aMatchString allNames sortedBySpellingDistance msg resources|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   612
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   613
    resources := self classResources.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   614
    env := anEnvironmentOrClassOrNil ? Smalltalk.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   615
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   616
    aMatchString := matchStringArg.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   617
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   618
    "/ try to limit search to a namespace (but only if nameSpace is not a matchCharacter)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   619
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   620
    (aMatchString includesString:'::') ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   621
        "/ pref := aMatchString upTo:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   622
        idx := aMatchString lastIndexOf:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   623
        pref := aMatchString copyTo:idx-2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   624
        pref includesMatchCharacters ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   625
            "/ search all in Smalltalk
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   626
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   627
            cls := Smalltalk at:pref asSymbol ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   628
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   629
                env := cls.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   630
                aMatchString := aMatchString copyFrom:pref size + 1 + 2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   631
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   632
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   633
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   634
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   635
    classNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   636
    caselessMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   637
    substringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   638
    caselessSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   639
    caselessWithoutPrefixSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   640
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   641
    lcMatchString := aMatchString asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   642
    needSearch := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   643
    aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   644
        subMatch := '*' , aMatchString , '*'.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   645
        lcSubMatch := subMatch asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   646
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   647
        "/ if the name is already a good one, avoid the expensive search
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   648
        className := aMatchString asSymbolIfInterned.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   649
        className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   650
            env isNameSpace ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   651
                cls := env at:className ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   652
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   653
                cls := env privateClassesAt:className.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   654
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   655
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   656
                needSearch := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   657
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   658
        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   659
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   660
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   661
    needSearch ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   662
        searchBlock := [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   663
            |thisName|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   664
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   665
            "/ use dotted names for java
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   666
            aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   667
                thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   668
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   669
                thisName := aClass name
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   670
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   671
            (lcMatchString match:aClass name asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   672
                caselessWithoutPrefixSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   673
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   674
            aClass nameWithoutPrefix ~= aClass name ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   675
                (lcMatchString match:aClass nameWithoutPrefix asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   676
                    caselessWithoutPrefixSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   677
                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   678
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   679
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   680
            (aMatchString match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   681
                classNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   682
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   683
                (lcMatchString match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   684
                    caselessMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   685
                ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   686
                    subMatch notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   687
                        (subMatch match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   688
                            substringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   689
                        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   690
                            (lcSubMatch match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   691
                                caselessSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   692
                            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   693
                        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   694
                    ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   695
                ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   696
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   697
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   698
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   699
        (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   700
            env allClassesDo:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   701
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   702
            env allPrivateClasses do:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   703
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   704
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   705
        sortedBySpellingDistance := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   706
        "/ if nothing matched - try caseless matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   707
        classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   708
            classNames := caselessMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   709
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   710
            "/ if nothing matched - try substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   711
            classNames size == 0 ifTrue:[
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
   712
                aMatchString isUppercaseFirst ifTrue:[
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   713
                    classNames := substringMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   714
                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   715
                "/ if nothing matched - try caseless substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   716
                classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   717
                    classNames := caselessSubstringMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   718
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   719
                    "/ if nothing matched - try best fitting
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   720
                    classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   721
                        aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   722
                            allNames := SortedCollection sortBlock:[:a :b | a value > b value].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   723
                            searchBlock2 :=
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   724
                                [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   725
                                    |thisName dist|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   726
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   727
                                    aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   728
                                        thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   729
                                    ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   730
                                        thisName := aClass name
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   731
                                    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   732
                                    dist := thisName asLowercase spellAgainst:lcMatchString.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   733
                                    (thisName asLowercase startsWith:lcMatchString) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   734
                                        dist := dist + (thisName size * 10).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   735
                                    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   736
                                    allNames add:(thisName -> dist).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   737
                                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   738
                            (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   739
                                env allClassesDo:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   740
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   741
                                env allPrivateClasses do:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   742
                            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   743
                            classNames := (allNames copyTo:(allNames size min:40)) collect:[:each | each key].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   744
                            sortedBySpellingDistance := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   745
                        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   746
                    ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   747
                ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   748
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   749
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   750
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   751
        (classNames size == 0) ifTrue:[^ nil].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   752
        (classNames size == 1) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   753
            className := classNames first
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   754
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   755
            |browseButton|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   756
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   757
            sortedBySpellingDistance ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   758
                classNames := classNames asArray sort.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   759
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   760
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   761
            aMatchString includesMatchCharacters ifTrue:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   762
                msg := 'Class names matching or similar to "%1"\\Select or enter name of class to switch to:'
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   763
            ] ifFalse:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   764
                msg := 'Class names containing or similar to "%1"\\Select or enter name of class to switch to:'
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   765
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   766
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   767
            box := self listBoxTitle:(resources string:msg with:matchStringArg) withCRs
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   768
                              okText:'OK'
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   769
                                list:classNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   770
            caselessWithoutPrefixSubstringMatchingNames notEmpty ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   771
                box initialText:(caselessWithoutPrefixSubstringMatchingNames first).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   772
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   773
            box action:[:aString | className := aString].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   774
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   775
            browseButton := Button label:(resources string:'Browse All').
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   776
            browseButton action:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   777
                            |classes title|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   778
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   779
                            title := resources string:'Class Names Matching or Similar to "%1"' with:matchStringArg.
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   780
                            classes := classNames collect:[:nm | Smalltalk classNamed:nm].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   781
                            aBrowserOrNil isNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   782
                                SystemBrowser
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   783
                                    browseClasses:classes 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   784
                                    label:title. 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   785
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   786
                                aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   787
                                    spawnClassBrowserFor:classes 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   788
                                    label:title 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   789
                                    in:#newBrowser 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   790
                                    select:false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   791
                            ].
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   792
                            box hide.
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   793
                            box closeRequest
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   794
                         ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   795
            box addButton:browseButton before:box okButton.
14502
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   796
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   797
            aMatchString isLowercaseFirst ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   798
                |browseImplementorsButton|
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   799
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   800
                browseImplementorsButton := Button label:(resources string:'Implementors').
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   801
                browseImplementorsButton 
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   802
                    action:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   803
                        aBrowserOrNil isNil ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   804
                            SystemBrowser browseImplementorsMatching:aMatchString
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   805
                        ] ifFalse:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   806
                            aBrowserOrNil
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   807
                                spawnMethodImplementorsBrowserFor:{ aMatchString } match:true in:#newBrowser.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   808
                        ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   809
                        box hide.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   810
                        box closeRequest
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   811
                     ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   812
                box addButton:browseImplementorsButton before:box okButton.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   813
            ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   814
9157
c8166dbf5a5a changed: #askForClassNameMatching:inEnvironment:for:
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   815
            box minExtent:300@250.
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   816
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   817
            box open.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   818
            (box accepted not or:[className isNil]) ifTrue:[ "/ cancel
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   819
                ^ nil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   820
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   821
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   822
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   823
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   824
    className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   825
        "/ use slashed javaName for search.
14653
0ca0460ee16b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14587
diff changeset
   826
        className := className copyReplaceAll:$. with:$/ ifNone:className.
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   827
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   828
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   829
"/    pref notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   830
"/        ^ pref , '::' , className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   831
"/    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   832
    ^ className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   833
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   834
    "Modified: / 16-10-2006 / 11:36:20 / cg"
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   835
    "Modified: / 24-05-2018 / 08:49:02 / Claus Gittinger"
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   836
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   837
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   838
listBoxTitle:title okText:okText list:aList
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   839
    "convenient method: setup a listBox & return it"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   840
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   841
    |box resources|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   842
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   843
    resources := self classResources.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   844
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   845
    box := ListSelectionBox
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   846
                title:(resources string:title)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   847
                okText:(resources string:okText)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   848
                action:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   849
    box list:aList.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   850
    ^ box
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   851
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   852
    "
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   853
     (self listBoxTitle:'hello world' okText:'aaa' list:#(1 2 3 4)) open
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   854
    "
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   855
! !
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   856
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   857
!SystemBrowser class methodsFor:'image specs'!
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   858
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   859
abstractMethodIcon
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   860
    <resource: #programImage>
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   861
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   862
    ^ ToolbarIconLibrary padLockGrayMiniIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   863
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   864
    "Modified: / 28-07-2018 / 10:00:47 / Claus Gittinger"
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   865
!
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   866
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   867
addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   868
    <resource: #image>
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   869
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   870
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   871
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   872
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   873
    "
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   874
     self addBreakPointIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   875
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   876
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   877
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   878
    ^ Icon constantNamed:'SystemBrowser class addBreakPointIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   879
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   880
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   881
                width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   882
                height:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   883
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   884
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   885
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   886
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   887
                            fromPackedString:'@@@@@@@@@8@C @N@@8@A@@@@@P@C @D@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   888
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   889
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   890
                            width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   891
                            height:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   892
                            bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   893
                                        fromPackedString:'@@@O8A?0O?!!??G?<_?1??G?<_?1??C?8G?@O8@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   894
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   895
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   896
        ]
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   897
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   898
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   899
addBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   900
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   901
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   902
    ^ ToolbarIconLibrary addBreakPointIcon2
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   903
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   904
    "Modified: / 28-07-2018 / 09:36:24 / Claus Gittinger"
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   905
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   906
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   907
autoloadedClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   908
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   909
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   910
    ^ ToolbarIconLibrary autoloadedClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   911
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   912
    "Modified: / 20-07-2007 / 09:15:37 / cg"
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   913
!
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   914
12040
5f2202d6fbec class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 11964
diff changeset
   915
breakPointedIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   916
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   917
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   918
    ^ self lineBreakPointedIcon
12504
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   919
    "/ ^ self breakPointedIcon2
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   920
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   921
    "Modified: / 05-03-2014 / 10:26:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
12504
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   922
!
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   923
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   924
canvasIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   925
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   926
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   927
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   928
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   929
     the ImageEditor may not be able to read the specification."
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   930
    "
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   931
     ImageEditor openOnClass:self andSelector:#canvasIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   932
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   933
    ^ Icon constantNamed:'SystemBrowser class canvasIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   934
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   935
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   936
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   937
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   938
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   939
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   940
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   941
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   942
                            fromPackedString:'@@@@@@@@@@.;.;.;.0@@@@@@@@@@C.;/C.;/@@9&XP9&XP@NY&DNY&D@C&Y!!C&Y!!@@9&XP9&XP@NY&DNY&D@C1DQC1DQ@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   943
                colorMapFromArray:#[ 0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   944
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   945
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   946
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   947
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   948
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   949
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   950
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   951
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   952
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   953
containerClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   954
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   955
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   956
    ^ ToolbarIconLibrary containerClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   957
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   958
    "Modified: / 20-07-2007 / 09:14:54 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   959
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   960
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   961
defaultIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   962
    <resource: #image>
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   963
    "This resource specification was automatically generated
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   964
     by the ImageEditor of ST/X."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   965
    "Do not manually edit this!! If it is corrupted,
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   966
     the ImageEditor may not be able to read the specification."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   967
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   968
     self defaultIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   969
     ImageEditor openOnClass:self andSelector:#defaultIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   970
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   971
    ^ Icon constantNamed:'SystemBrowser class defaultIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   972
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   973
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   974
                width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   975
                height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   976
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   977
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   978
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   979
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   980
                            fromPackedString:'
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   981
@@@@@@@@@@@@@@@@@@@FY&Y&Y&X0@@@@@@@@@@YDQDQDQB@@@@@@@@@@A$QDQDQDH@@@@@@@@@@CH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   982
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y#@@@@@F@"H"HFDQDQDQH@@@@@@@@@@@L"H"H"
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   983
H @@@@@ @@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y#@@@@@F@"H"HFUUUUUUH@@@@@@@@@@@L"H"H"H @@@@@@
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   984
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@B@B@ @@H@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   985
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@H@@ @@@@Hb');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   986
                colorMapFromArray:#[ 0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   987
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   988
                            width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   989
                            height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   990
                            bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   991
                                        fromPackedString:'
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   992
??0@@O?<@@C??@@@??0@@O?<@@C??@@@@ @@@@H@@@@B@@@@@ O?8@\C?>@G??? A0O?8@HC?>@B@@@@@ O?8@\C?>@G??? A0O?8@@C?>@@@@@@9O\7\IRT
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   993
QDBD%DQ@!!OH''HHRQEABT$QPP99]7\@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   994
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   995
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   996
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   997
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   998
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   999
deprecatedMethodIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1000
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1001
18411
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1002
    ^ ToolbarIconLibrary deprecatedMethodIcon
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1003
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1004
    "Modified: / 21-09-2018 / 15:30:48 / Claus Gittinger"
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1005
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1006
16893
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1007
disabledBreakpointIcon
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1008
    <resource: #programImage>
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1009
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1010
    ^ ToolbarIconLibrary breakpointDisabled9x9
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1011
!
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
  1012
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1013
doNotEnterIcon
18411
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1014
    <resource: #programImage>
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1015
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1016
    ^ ToolbarIconLibrary doNotEnterIcon
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1017
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1018
    "Modified: / 21-09-2018 / 15:29:09 / Claus Gittinger"
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1019
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1020
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1021
emptyIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1022
    <resource: #image>
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1023
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1024
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1025
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1026
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1027
    "
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1028
     self emptyIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1029
     ImageEditor openOnClass:self andSelector:#emptyIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1030
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1031
    ^ Icon constantNamed:'SystemBrowser class emptyIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1032
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1033
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1034
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1035
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1036
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1037
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1038
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1039
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1040
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1041
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1042
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1043
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1044
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1045
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1046
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1047
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1048
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1049
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1050
    "Created: / 5.11.2001 / 09:39:54 / cg"
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1051
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1052
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1053
errorClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1054
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1055
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1056
    ^ ToolbarIconLibrary errorClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1057
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1058
    "Modified: / 20-07-2007 / 09:14:06 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1059
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1060
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1061
exceptionClassIcon
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1062
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1063
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1064
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1065
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1066
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1067
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1068
    "
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1069
     self exceptionClassIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1070
     ImageEditor openOnClass:self andSelector:#exceptionClassIcon
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1071
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1072
    "
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1073
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1074
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1075
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1076
    ^ ToolbarIconLibrary exceptionClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1077
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1078
    "Modified: / 20-07-2007 / 09:13:18 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1079
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1080
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1081
fileImageIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1082
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1083
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1084
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1085
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1086
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1087
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1088
     self fileImageIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1089
     ImageEditor openOnClass:self andSelector:#fileImageIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1090
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1091
    ^ Icon constantNamed:'SystemBrowser class fileImageIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1092
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1093
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1094
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1095
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1096
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1097
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1098
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1099
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1100
                            fromPackedString:'@@@@@@@@@@H"H"H"@@@BQBH!!D"@@@$P"HQH"@@H"H"DQH @BH"HQDRH@@"H"DQH"@@L3L3DSL0@CL3L1D3L@@3L3L3L3@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1101
                colorMapFromArray:#[ 0 0 0 51 153 153 51 255 255 255 153 0 255 255 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1102
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1103
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1104
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1105
                            bits:(ByteArray fromPackedString:'?<C?8O?0??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1106
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1107
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1108
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1109
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1110
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1111
fullBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1112
    <resource: #programImage>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1113
15305
4ba4b14f6039 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15206
diff changeset
  1114
    ^ ToolbarIconLibrary fullBreakPoint9x9Icon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1115
    "/ ^ self fullBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1116
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1117
    "Created: / 05-03-2014 / 10:27:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1118
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1119
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1120
fullBreakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1121
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1122
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1123
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1124
    "Do not manually edit this!! If it is corrupted,
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1125
     the ImageEditor may not be able to read the specification."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1126
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1127
     self stopIcon1 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1128
     ImageEditor openOnClass:self andSelector:#stopIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1129
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1130
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1131
    ^ Icon constantNamed:'SystemBrowser stopIcon1'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1132
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1133
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1134
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1135
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1136
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1137
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1138
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1139
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1140
                            fromPackedString:'DQH"H!!DQDAD!!DAD!!DQ@RDP@AD!!DPHQD@@QD!!DBDQ@@DQHQ@!!DQ@QDRDZHQDQDQD!!FBDQDADQHQ@RDP@AD!!DPDRDPDRDQDADRH"HQDQ@b');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1141
                colorMapFromArray:#[ 255 255 255 255 0 0 128 0 0 ];
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1142
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1143
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1144
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1145
                            bits:(ByteArray fromPackedString:'G0@? G?@?>C?8O? ?>C?8G?@O8@_@@@a');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1146
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1147
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1148
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1149
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1150
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1151
fullBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1152
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1153
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1154
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1155
    "Do not manually edit this!! If it is corrupted,
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1156
     the ImageEditor may not be able to read the specification."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1157
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1158
     self stopIcon2 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1159
     ImageEditor openOnClass:self andSelector:#stopIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1160
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1161
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1162
    ^ Icon constantNamed:'SystemBrowser stopIcon2'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1163
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1164
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1165
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1166
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1167
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1168
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1169
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1170
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1171
                            fromPackedString:'DQH"H!!DQDAD!!DQD!!DQ@RDQDQD!!DPHQDQDQD!!DBDSL3LQHQ@!!D@@@DRDZHQL3L1D!!FBDQDQDQHQ@RDQDQD!!DPDRDQDRDQDADRH"HQDQ@b');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1172
                colorMapFromArray:#[ 255 255 255 255 0 0 128 0 0 255 163 163 ];
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1173
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1174
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1175
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1176
                            bits:(ByteArray fromPackedString:'G0@? G?@?>C?8O? ?>C?8G?@O8@_@@@a');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1177
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1178
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1179
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1180
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1181
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1182
greenCheckIcon
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1183
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1184
     by the ImageEditor of ST/X."
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1185
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1186
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1187
     the ImageEditor may not be able to read the specification."
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1188
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1189
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1190
     self greenCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1191
     ImageEditor openOnClass:self andSelector:#greenCheckIcon
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1192
     Icon flushCachedIcons
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1193
    "
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1194
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1195
    <resource: #image>
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1196
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1197
    ^Icon
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1198
        constantNamed:'SystemBrowser class greenCheckIcon'
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1199
        ifAbsentPut:[(Depth2Image width:13 height:11) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@J@@@@FP@@@BP@@FA$@@A($@@@F)@@@@Y@@@@A@@@@@@@@@b')
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1200
            colorMapFromArray:#[0 0 0 126 190 126 0 127 0]
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1201
            mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'@@@@@@C@@\@A CN@N0@_@@8@A@@@@@@a'); yourself); yourself]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1202
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1203
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1204
greenLockIcon
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1205
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1206
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1207
    ^ ToolbarIconLibrary padLockGreenMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1208
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1209
    "Modified: / 05-11-2001 / 09:40:12 / cg"
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1210
    "Modified: / 28-07-2018 / 09:35:28 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1211
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1212
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1213
greenThumbUpIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1214
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1215
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1216
    ^ ToolbarIconLibrary greenThumbUpIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1217
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1218
    "Modified: / 17-07-2011 / 10:03:34 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1219
    "Modified: / 28-07-2018 / 09:35:33 / Claus Gittinger"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1220
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1221
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1222
greenThumbUpSmallIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1223
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1224
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1225
    ^ ToolbarIconLibrary greenThumbUpSmallIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1226
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1227
    "Modified: / 17-07-2011 / 10:03:43 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1228
    "Modified: / 28-07-2018 / 09:35:35 / Claus Gittinger"
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1229
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1230
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1231
greyCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1232
    <resource: #image>
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1233
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1234
     by the ImageEditor of ST/X."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1235
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1236
     the ImageEditor may not be able to read the specification."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1237
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1238
     self greyCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1239
     ImageEditor openOnClass:self andSelector:#greyCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1240
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1241
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1242
    ^ Icon constantNamed:'SystemBrowser class greyCheckIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1243
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1244
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1245
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1246
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1247
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1248
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1249
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1250
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1251
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@H @@@@@@@"@@@@@@@@H@@@@@@ @"@@@@@@H H@@@@@@@H"@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1252
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1253
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1254
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1255
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1256
                            bits:(ByteArray fromPackedString:'@@@@@@C@@X@A@AL@F @N@@P@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1257
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1258
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1259
        ]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1260
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1261
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1262
greyThumbUpIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1263
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1264
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1265
    ^ ToolbarIconLibrary greyThumbUpIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1266
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1267
    "Modified: / 17-07-2011 / 10:04:06 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1268
    "Modified: / 28-07-2018 / 09:35:40 / Claus Gittinger"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1269
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1270
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1271
helpIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1272
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1273
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1274
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1275
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1276
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1277
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1278
     self helpIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1279
     ImageEditor openOnClass:self andSelector:#helpIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1280
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1281
    ^ Icon constantNamed:'SystemBrowser class helpIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1282
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1283
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1284
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1285
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1286
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1287
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1288
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1289
                bits:(ByteArray fromPackedString:'@@A?<G#0]7A?\G;0__A?<G72_?@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1290
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1291
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1292
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1293
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1294
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1295
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1296
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1297
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1298
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1299
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1300
hierarchicalListIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1301
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1302
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1303
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1304
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1305
     the ImageEditor may not be able to read the specification."
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1306
    "
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1307
     ImageEditor openOnClass:self andSelector:#hierarchicalListIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1308
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1309
    ^ Icon constantNamed:'SystemBrowser class hierarchicalListIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1310
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1311
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1312
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1313
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1314
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1315
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1316
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1317
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1318
                            fromPackedString:'@@@@NAUUU0@R??8@GO?>@A0@C @\??88G@@N@A3?? @^@@8@N***@@@@@C b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1319
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1320
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1321
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1322
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1323
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1324
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1325
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1326
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1327
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1328
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1329
ignoredMethodIcon
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1330
    <resource: #programImage>
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1331
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1332
    ^ ToolbarIconLibrary padLockBlackMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1333
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1334
    "Modified: / 28-07-2018 / 09:35:17 / Claus Gittinger"
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1335
!
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1336
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1337
imageIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1338
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1339
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1340
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1341
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1342
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1343
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1344
     self imageIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1345
     ImageEditor openOnClass:self andSelector:#imageIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1346
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1347
    ^ Icon constantNamed:'SystemBrowser class imageIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1348
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1349
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1350
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1351
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1352
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1353
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1354
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1355
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1356
                            fromPackedString:'@@@@@@@@@@H"H"H"H @BQBH!!D"H@@$P"HQH"@@H"H"DQH @BH"HQDRH@@"H"DQH"@@L3L3DSL0@CL3L1D3L@@3L3L3L3@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1357
                colorMapFromArray:#[ 0 0 0 51 153 153 51 255 255 255 153 0 255 255 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1358
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1359
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1360
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1361
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1362
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1363
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1364
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1365
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1366
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1367
instVarOverlayXmlSpec
14390
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1368
    <resource: #image>
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1369
    "This resource specification was automatically generated
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1370
     by the ImageEditor of ST/X."
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1371
    "Do not manually edit this!! If it is corrupted,
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1372
     the ImageEditor may not be able to read the specification."
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1373
    "
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1374
     self instVarOverlayXmlSpec inspect
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1375
     ImageEditor openOnClass:self andSelector:#instVarOverlayXmlSpec
14390
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1376
     Icon flushCachedIcons"
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1377
    
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1378
    ^ Icon constantNamed:'SystemBrowser class instVarOverlayXmlSpec'
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1379
        ifAbsentPut:[
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1380
            (Depth2Image new)
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1381
                width:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1382
                height:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1383
                photometric:(#palette);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1384
                bitsPerSample:(#[ 2 ]);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1385
                samplesPerPixel:(1);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1386
                bits:(ByteArray 
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1387
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BDP@@BID@@@"Q@@@BDP@@@@@@@@@@@@@@@@@@@a');
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1388
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1389
                mask:((ImageMask new)
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1390
                            width:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1391
                            height:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1392
                            bits:(ByteArray 
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1393
                                        fromPackedString:'
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1394
@@@@@@@@@@@@@@@@BA@XFC@L[>[O8<=#[7X0CA XBA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1395
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14390
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1396
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1397
                            yourself);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1398
                yourself
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1399
        ]
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1400
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1401
7992
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1402
instrumentationIcon
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1403
    <resource: #programImage>
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1404
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1405
    ^ ToolbarIconLibrary pipette16x16Icon
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1406
!
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1407
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1408
lineBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1409
    <resource: #programImage>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1410
15305
4ba4b14f6039 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15206
diff changeset
  1411
    ^ ToolbarIconLibrary lineBreakPoint9x9Icon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1412
    "/ ^ self lineBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1413
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1414
    "Created: / 05-03-2014 / 10:20:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1415
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1416
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1417
lineBreakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1418
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1419
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1420
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1421
    "Do not manually edit this!! If it is corrupted,
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1422
     the ImageEditor may not be able to read the specification."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1423
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1424
     self breakPointedIcon1 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1425
     ImageEditor openOnClass:self andSelector:#breakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1426
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1427
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1428
    ^ Icon constantNamed:'SystemBrowser breakPointedIcon1'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1429
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1430
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1431
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1432
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1433
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1434
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1435
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1436
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1437
                            fromPackedString:'@@@@@@@@@P@@L3@@@@$@L@@@L@@H@@@C@@@@APL@DQ@C@@@C@1DS@0@B@0@QD@L@@@@@@0@@@@@@L@@@L@@@@@@3L@@@@ @@@@@@@@ b');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1438
                colorMapFromArray:#[ 255 0 0 255 255 255 0 0 0 255 199 199 ];
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1439
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1440
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1441
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1442
                            bits:(ByteArray fromPackedString:'@@@N@C>@O8A?0G?@_<@? C>@C @@@@@a');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1443
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1444
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1445
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1446
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1447
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1448
lineBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1449
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1450
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1451
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1452
    "Do not manually edit this!! If it is corrupted,
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1453
     the ImageEditor may not be able to read the specification."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1454
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1455
     self breakPointedIcon2 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1456
     ImageEditor openOnClass:self andSelector:#breakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1457
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1458
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1459
    ^ Icon constantNamed:'SystemBrowser breakPointedIcon2'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1460
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1461
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1462
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1463
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1464
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1465
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1466
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1467
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1468
                            fromPackedString:'DQH"H!!DQDAD!!DQD!!DQ@RDQDQD!!DPHQDQDQD!!DBDQDQDQHQ@!!DQDQDRDZHQDQDQD!!FBDQDQDQHQ@RDQDQD!!DPDRDQDRDQDADRH"HQDQ@b');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1469
                colorMapFromArray:#[ 255 255 255 255 0 0 128 0 0 ];
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1470
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1471
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1472
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1473
                            bits:(ByteArray fromPackedString:'G0@? G?@?>C?8O? ?>C?8G?@O8@_@@@a');
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1474
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1475
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1476
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1477
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1478
16027
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1479
lineTracePointedIcon
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1480
    <resource: #programImage>
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1481
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1482
    ^ ToolbarIconLibrary lineTracePoint9x9Icon
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1483
!
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1484
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1485
medium_methodEmptyInheritedIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1486
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1487
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1488
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1489
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1490
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1491
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1492
     self medium_methodEmptyInheritedIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1493
     ImageEditor openOnClass:self andSelector:#medium_methodEmptyInheritedIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1494
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1495
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1496
        constantNamed:'SystemBrowser class medium_methodEmptyInheritedIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1497
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1498
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1499
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1500
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1501
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1502
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1503
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1504
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1505
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1506
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1507
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1508
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1509
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1510
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1511
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1512
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1513
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1514
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1515
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1516
medium_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1517
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1518
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1519
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1520
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1521
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1522
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1523
     self medium_methodInheritedFromAboveAndRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1524
     ImageEditor openOnClass:self andSelector:#medium_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1525
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1526
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1527
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1528
        constantNamed:'SystemBrowser class medium_methodInheritedFromAboveAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1529
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1530
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1531
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1532
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1533
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1534
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1535
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1536
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1537
                            fromPackedString:'@@@@@@@@@B()@B(@A@ @A@ @A@ (EP@HEP@@@@@@@@@@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1538
                colorMapFromArray:#[ 0 0 0 255 255 127 255 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1539
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1540
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1541
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1542
                            bits:(ByteArray fromPackedString:'@@@/ B>@K8A7@G\@]0C:@O(@> @@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1543
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1544
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1545
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1546
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1547
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1548
medium_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1549
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1550
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1551
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1552
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1553
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1554
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1555
     self medium_methodInheritedFromAboveIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1556
     ImageEditor openOnClass:self andSelector:#medium_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1557
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1558
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1559
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1560
        constantNamed:'SystemBrowser class medium_methodInheritedFromAboveIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1561
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1562
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1563
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1564
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1565
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1566
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1567
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1568
                bits:(ByteArray fromPackedString:'@@@@@@@A@@@ @B@@HA=0LG@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1569
                colorMapFromArray:#[ 0 0 0 255 255 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1570
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1571
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1572
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1573
                            bits:(ByteArray fromPackedString:'@@@ @B@@H@A0@G@@\@C8@O @>@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1574
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1575
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1576
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1577
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1578
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1579
medium_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1580
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1581
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1582
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1583
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1584
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1585
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1586
     self medium_methodRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1587
     ImageEditor openOnClass:self andSelector:#medium_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1588
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1589
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1590
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1591
        constantNamed:'SystemBrowser class medium_methodRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1592
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1593
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1594
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1595
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1596
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1597
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1598
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1599
                bits:(ByteArray fromPackedString:'@ED@L@\@A0@B@@H@@"8@P@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1600
                colorMapFromArray:#[ 0 0 0 255 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1601
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1602
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1603
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1604
                            bits:(ByteArray fromPackedString:'@@@O @>@C8@G@@\@A0@B@@H@@ @@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1605
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1606
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1607
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1608
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1609
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1610
menuIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1611
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1612
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1613
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1614
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1615
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1616
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1617
     self menuIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1618
     ImageEditor openOnClass:self andSelector:#menuIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1619
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1620
    ^ Icon constantNamed:'SystemBrowser class menuIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1621
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1622
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1623
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1624
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1625
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1626
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1627
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1628
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1629
                            fromPackedString:'@@@@@B***P@%UUT@@@@@@B***P@%UUT@@@@@@B***P@%UUT@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1630
                colorMapFromArray:#[ 0 0 0 170 170 170 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1631
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1632
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1633
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1634
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8?? @@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1635
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1636
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1637
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1638
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1639
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1640
methodEmptyInheritedIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1641
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1642
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1643
    ^ self small_methodEmptyInheritedIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1644
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1645
    "Modified: / 28-07-2018 / 09:37:15 / Claus Gittinger"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1646
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1647
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1648
methodInheritedFromAboveAndRedefinedBelowIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1649
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1650
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1651
    ^ self small_methodInheritedFromAboveAndRedefinedBelowIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1652
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1653
    "Modified: / 28-07-2018 / 09:37:18 / Claus Gittinger"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1654
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1655
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1656
methodInheritedFromAboveIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1657
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1658
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1659
    ^ self small_methodInheritedFromAboveIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1660
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1661
    "Modified: / 28-07-2018 / 09:37:23 / Claus Gittinger"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1662
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1663
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1664
methodIsSubclassResponsibilityAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1665
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1666
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1667
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1668
    "Do not manually edit this!! If it is corrupted,
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1669
     the ImageEditor may not be able to read the specification."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1670
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1671
     self methodIsSubclassResponsibilityAndRedefinedBelowIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1672
     ImageEditor openOnClass:self andSelector:#methodIsSubclassResponsibilityAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1673
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1674
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1675
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1676
        constantNamed:'SystemBrowser class methodIsSubclassResponsibilityAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1677
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1678
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1679
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1680
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1681
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1682
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1683
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1684
                bits:(ByteArray fromPackedString:' @D@@H@@@@@B@@@@@@4UBHR@A@@"@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1685
                colorMapFromArray:#[ 0 0 0 255 127 127 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1686
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1687
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1688
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1689
                            bits:(ByteArray fromPackedString:'<HC DO@@>O#8\G@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1690
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1691
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1692
        ]
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1693
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1694
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1695
methodIsSubclassResponsibilityIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1696
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1697
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1698
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1699
    "Do not manually edit this!! If it is corrupted,
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1700
     the ImageEditor may not be able to read the specification."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1701
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1702
     self methodIsSubclassResponsibilityIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1703
     ImageEditor openOnClass:self andSelector:#methodIsSubclassResponsibilityIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1704
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1705
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1706
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1707
        constantNamed:'SystemBrowser class methodIsSubclassResponsibilityIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1708
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1709
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1710
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1711
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1712
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1713
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1714
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1715
                bits:(ByteArray fromPackedString:' @D@@H@@@@@B@@@@@ 4@B@H@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1716
                colorMapFromArray:#[ 0 0 0 255 127 127 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1717
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1718
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1719
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1720
                            bits:(ByteArray fromPackedString:'<HC DO@@<IC0(I@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1721
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1722
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1723
        ]
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1724
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1725
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1726
methodRedefinedBelowIcon
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1727
    <resource: #programImage>
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1728
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1729
    ^ self small_methodRedefinedBelowIcon
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1730
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1731
    "Modified: / 28-07-2018 / 09:52:59 / Claus Gittinger"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1732
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1733
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1734
nameSpaceIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1735
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1736
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1737
    ^ ToolbarIconLibrary nameSpaceBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1738
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1739
    "Modified: / 20-07-2007 / 09:12:26 / cg"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1740
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1741
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1742
notificationClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1743
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1744
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1745
    ^ ToolbarIconLibrary notificationClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1746
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1747
    "Modified: / 20-07-2007 / 09:11:21 / cg"
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1748
!
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1749
18411
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1750
obsoleteMethodIcon
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1751
    <resource: #programImage>
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1752
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1753
    ^ ToolbarIconLibrary obsoleteMethodIcon
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1754
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1755
    "Created: / 21-09-2018 / 15:29:51 / Claus Gittinger"
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1756
!
f247ae2dd036 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18317
diff changeset
  1757
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1758
packageIcon
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1759
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1760
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1761
    ^ ToolbarIconLibrary packageIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1762
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1763
    "Modified: / 28-07-2018 / 09:41:22 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1764
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1765
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1766
packageIconGraySmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1767
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1768
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1769
    ^ ToolbarIconLibrary smallGrayPackageIcon
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1770
!
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1771
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1772
packageIconGreenSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1773
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1774
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1775
    ^ ToolbarIconLibrary smallGreenPackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1776
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1777
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1778
packageIconOrangeSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1779
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1780
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1781
    ^ ToolbarIconLibrary smallOrangePackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1782
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1783
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1784
packageIconSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1785
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1786
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1787
    ^ ToolbarIconLibrary smallYellowPackageIcon
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1788
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1789
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1790
padLockBlackMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1791
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1792
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1793
    ^ ToolbarIconLibrary padLockBlackMiniIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1794
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1795
    "Modified: / 28-07-2018 / 10:00:43 / Claus Gittinger"
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1796
!
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1797
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1798
padLockBlueMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1799
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1800
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1801
    ^ ToolbarIconLibrary padLockBlueMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1802
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1803
    "Modified: / 28-07-2018 / 09:34:48 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1804
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1805
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1806
padLockGrayMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1807
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1808
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1809
    ^ ToolbarIconLibrary padLockGrayMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1810
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1811
    "Modified: / 28-07-2018 / 09:34:51 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1812
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1813
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1814
padLockGreenMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1815
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1816
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1817
    ^ ToolbarIconLibrary padLockGreenMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1818
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1819
    "Modified: / 28-07-2018 / 09:34:58 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1820
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1821
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1822
padLockRedMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1823
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1824
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1825
    ^ ToolbarIconLibrary padLockRedMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1826
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1827
    "Modified: / 28-07-2018 / 09:33:57 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1828
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1829
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1830
privateMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1831
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1832
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1833
    ^ ToolbarIconLibrary padLockRedMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1834
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1835
    "Modified: / 28-07-2018 / 09:34:42 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1836
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1837
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1838
programImageIcon
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1839
    <resource: #programImage>
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1840
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1841
    ^ ToolbarIconLibrary programImageIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1842
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1843
    "Modified: / 28-07-2018 / 09:43:41 / Claus Gittinger"
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1844
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1845
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1846
programMenuIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1847
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1848
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1849
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1850
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1851
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1852
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1853
     self programMenuIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1854
     ImageEditor openOnClass:self andSelector:#programMenuIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1855
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1856
    ^ Icon constantNamed:#'SystemBrowser class programMenuIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1857
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1858
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1859
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1860
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1861
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1862
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1863
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1864
                bits:(ByteArray fromPackedString:'@@A?<G?0@@A?<G?0@@A?<G?3@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1865
                colorMapFromArray:#[ 0 0 0 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1866
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1867
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1868
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1869
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8?? @@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1870
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1871
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1872
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1873
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1874
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1875
protectedMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1876
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1877
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1878
    ^ ToolbarIconLibrary padLockGreenMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1879
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1880
    "Modified: / 28-07-2018 / 09:34:10 / Claus Gittinger"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1881
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1882
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1883
queryClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1884
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1885
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1886
    ^ ToolbarIconLibrary queryClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1887
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1888
    "Modified: / 20-07-2007 / 09:10:32 / cg"
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1889
!
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1890
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1891
redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1892
    <resource: #image>
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1893
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1894
     by the ImageEditor of ST/X."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1895
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1896
     the ImageEditor may not be able to read the specification."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1897
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1898
     self redCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1899
     ImageEditor openOnClass:self andSelector:#redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1900
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1901
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1902
    ^ Icon constantNamed:#'SystemBrowser class redCheckIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1903
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1904
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1905
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1906
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1907
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1908
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1909
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1910
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1911
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@"@@@@@@@BH@@@@ @@H @@@BH @"@@@@@BH"H @@@@@BH"@@@@@@@BH @@@@@@@B@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1912
                colorMapFromArray:#[ 0 0 0 255 255 255 255 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1913
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1914
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1915
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1916
                            bits:(ByteArray fromPackedString:'@@@@@@A @L@!! GL@O0@^@@8@A@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1917
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1918
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1919
        ]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1920
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1921
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1922
redThumbDownIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1923
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1924
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1925
    ^ ToolbarIconLibrary redThumbDownIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1926
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1927
    "Modified: / 17-07-2011 / 10:04:37 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1928
    "Modified: / 28-07-2018 / 09:37:09 / Claus Gittinger"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1929
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1930
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1931
redThumbDownSmallIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1932
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1933
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1934
    ^ ToolbarIconLibrary redThumbDownSmallIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1935
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1936
    "Modified: / 17-07-2011 / 10:05:09 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1937
    "Modified: / 28-07-2018 / 09:37:04 / Claus Gittinger"
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1938
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1939
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1940
removeBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1941
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1942
15362
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1943
    UserPreferences current useColorsForColorBlindness ifTrue:[
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1944
        ^ ToolbarIconLibrary removeBreakPointBlueIcon2
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1945
    ].
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1946
    ^ ToolbarIconLibrary removeBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1947
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1948
    "Modified: / 28-07-2018 / 09:36:57 / Claus Gittinger"
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1949
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1950
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1951
small_methodEmptyInheritedIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1952
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1953
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1954
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1955
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1956
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1957
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1958
     self small_methodEmptyInheritedIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1959
     ImageEditor openOnClass:self andSelector:#small_methodEmptyInheritedIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1960
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1961
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1962
        constantNamed:#'SystemBrowser class small_methodEmptyInheritedIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1963
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1964
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1965
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1966
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1967
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1968
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1969
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1970
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1971
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1972
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1973
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1974
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1975
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1976
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1977
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1978
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1979
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1980
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1981
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1982
small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1983
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1984
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1985
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1986
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1987
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1988
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1989
     self small_methodInheritedFromAboveAndRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1990
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1991
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1992
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1993
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1994
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1995
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1996
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1997
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1998
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1999
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2000
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2001
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2002
                bits:(ByteArray fromPackedString:'L1@DLLS,ES@@@@@0@@@*@L#@B@@3@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2003
                colorMapFromArray:#[ 0 0 0 255 255 127 255 127 127 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2004
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2005
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2006
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2007
                            bits:(ByteArray fromPackedString:'\GC8>O @>O#8\G@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2008
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2009
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2010
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2011
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2012
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2013
small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2014
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2015
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2016
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2017
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2018
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2019
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2020
     self small_methodInheritedFromAboveIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2021
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2022
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2023
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2024
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2025
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2026
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2027
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2028
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2029
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2030
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2031
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2032
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2033
                bits:(ByteArray fromPackedString:'H#HDLHR@EP@@@@@@@BD@IP@!!@B@@IP@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2034
                colorMapFromArray:#[ 0 0 0 255 255 127 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2035
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2036
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2037
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2038
                            bits:(ByteArray fromPackedString:'\GC8>O @@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2039
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2040
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2041
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2042
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2043
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2044
small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2045
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2046
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2047
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2048
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2049
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2050
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2051
     self small_methodRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2052
     ImageEditor openOnClass:self andSelector:#small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2053
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2054
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2055
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2056
        constantNamed:#'SystemBrowser class small_methodRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2057
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2058
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2059
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2060
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2061
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2062
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2063
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2064
                bits:(ByteArray fromPackedString:'@@D@@@@@@@@@@@@@@@4UBHR@A@@"@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2065
                colorMapFromArray:#[ 0 0 0 255 127 127 127 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2066
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2067
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2068
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2069
                            bits:(ByteArray fromPackedString:'@@@@@@@@>O#8\G@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2070
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2071
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2072
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2073
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2074
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2075
startableClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2076
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2077
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2078
    ^ ToolbarIconLibrary startableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2079
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2080
    "Created: / 05-11-2001 / 09:50:16 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2081
    "Modified: / 20-07-2007 / 09:09:40 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2082
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2083
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2084
startableVisualAppIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2085
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2086
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2087
    ^ ToolbarIconLibrary visualStartableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2088
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2089
    "Created: / 05-11-2001 / 09:49:00 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2090
    "Modified: / 20-07-2007 / 09:08:34 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2091
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2092
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2093
stopIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2094
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2095
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2096
    ^ self fullBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2097
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2098
    "Modified: / 05-03-2014 / 10:27:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2099
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2100
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2101
tabListIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2102
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2103
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2104
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2105
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2106
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2107
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2108
     self tabListIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2109
     ImageEditor openOnClass:self andSelector:#tabListIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2110
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2111
    ^ Icon constantNamed:#'SystemBrowser class tabListIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2112
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2113
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2114
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2115
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2116
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2117
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2118
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2119
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2120
                            fromPackedString:'@@@@D3!!QP@@8TT@@N@@J@C***P@:**$AN**)@C***P@:**$@IUUUB @@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2121
                colorMapFromArray:#[ 0 0 0 127 127 127 170 170 170 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2122
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2123
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2124
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2125
                            bits:(ByteArray fromPackedString:'?8C?0O?0??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2126
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2127
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2128
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2129
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2130
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2131
tableColumnsIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2132
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2133
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2134
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2135
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2136
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2137
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2138
     self tableColumnsIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2139
     ImageEditor openOnClass:self andSelector:#tableColumnsIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2140
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2141
    ^ Icon constantNamed:#'SystemBrowser class tableColumnsIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2142
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2143
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2144
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2145
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2146
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2147
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2148
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2149
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2150
                            fromPackedString:'@@@@@C??? @8(($@L@@AHC"""R@0@@D@NJJI@C@@@P@8(($@IUUU@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2151
                colorMapFromArray:#[ 0 0 0 127 127 127 170 170 170 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2152
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2153
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2154
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2155
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2156
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2157
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2158
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2159
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2160
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2161
testCaseClassIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2162
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2163
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2164
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2165
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2166
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2167
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2168
testCaseClassIconFor:cls
4167
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2169
    <resource: #programImage>
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2170
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2171
    "/ decision moved to TestCase - see there.
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2172
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2173
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2174
    |lastResult|
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2175
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2176
    lastResult := cls lastTestRunResultOrNil.
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2177
    lastResult notNil ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2178
        lastResult == TestResult statePass ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2179
            ^ self testCasePassedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2180
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2181
        lastResult == TestResult stateFail ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2182
            ^ self testCaseFailedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2183
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2184
        lastResult == TestResult stateError ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2185
            ^ self testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2186
        ].
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2187
    ].
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2188
    ^ self testCaseUnknownResultIcon
6848
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2189
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2190
    "Modified: / 06-08-2006 / 11:14:12 / cg"
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2191
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2192
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2193
testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2194
    <resource: #programImage>
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2195
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2196
    "/ only left here for backward compatibility...
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2197
    ^ ToolbarIconLibrary testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2198
!
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2199
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2200
testCaseFailedIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2201
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2202
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2203
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2204
    ^ ToolbarIconLibrary testCaseFailedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2205
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2206
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2207
testCasePassedIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2208
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2209
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2210
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2211
    ^ ToolbarIconLibrary testCasePassedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2212
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2213
12631
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2214
testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2215
    <resource: #programImage>
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2216
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2217
    "/ only left here for backward compatibility...
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2218
    ^ ToolbarIconLibrary testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2219
!
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2220
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2221
testCaseUnknownResultIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2222
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2223
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2224
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2225
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2226
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2227
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2228
timeIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2229
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2230
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2231
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2232
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2233
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2234
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2235
     self timeIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2236
     ImageEditor openOnClass:self andSelector:#timeIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2237
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2238
    ^ Icon constantNamed:#'SystemBrowser class timeIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2239
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2240
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2241
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2242
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2243
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2244
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2245
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2246
                bits:(ByteArray fromPackedString:'@@@G@A7@G\@=8C0 O>@_0A?@A0@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2247
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2248
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2249
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2250
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2251
                            bits:(ByteArray fromPackedString:'A0@_0C? O>A?<G?0_?@?8C? G<@G@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2252
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2253
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2254
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2255
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2256
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2257
traceIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2258
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2259
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2260
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2261
    "Do not manually edit this!! If it is corrupted,
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2262
     the ImageEditor may not be able to read the specification."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2263
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2264
     self traceIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2265
     ImageEditor openOnClass:self andSelector:#traceIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2266
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2267
    ^ Icon constantNamed:#'SystemBrowser class traceIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2268
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2269
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2270
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2271
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2272
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2273
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2274
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2275
                bits:(ByteArray fromPackedString:'@@@@@@>@C8@G@@\@@ @B@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2276
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2277
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2278
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2279
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2280
                            bits:(ByteArray fromPackedString:'_?A?<C? O>@_0A?@C8@O @\@A0@B@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2281
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2282
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2283
        ]
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2284
!
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2285
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2286
visualStartableClassIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2287
    <resource: #image>
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2288
    "This resource specification was automatically generated
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2289
     by the ImageEditor of ST/X."
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2290
    "Do not manually edit this!! If it is corrupted,
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2291
     the ImageEditor may not be able to read the specification."
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2292
    "
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2293
     self visualStartableClassIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2294
     ImageEditor openOnClass:self andSelector:#visualStartableClassIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2295
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2296
    ^ Icon constantNamed:#'SystemBrowser class visualStartableClassIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2297
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2298
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2299
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2300
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2301
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2302
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2303
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2304
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2305
                            fromPackedString:'**J*NJ*"*#"*!!J(@*!!T*@J(DJ B*DR(@*!!T*NJ(*J B*O2(@*+.*@J*** @b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2306
                colorMapFromArray:#[ 0 0 0 127 127 127 255 0 0 255 255 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2307
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2308
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2309
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2310
                            bits:(ByteArray fromPackedString:'@ @B@@\@C8@O @>@C8@H @>@A0@G@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2311
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2312
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2313
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2314
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2315
    "Modified: / 5.11.2001 / 09:49:30 / cg"
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2316
!
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2317
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2318
warningClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2319
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2320
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2321
    ^ ToolbarIconLibrary warningClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2322
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2323
    "Modified: / 20-07-2007 / 09:04:39 / cg"
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2324
!
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2325
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2326
watchIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2327
    <resource: #image>
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2328
    "This resource specification was automatically generated
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2329
     by the ImageEditor of ST/X."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2330
    "Do not manually edit this!! If it is corrupted,
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2331
     the ImageEditor may not be able to read the specification."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2332
    "
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2333
     self watchIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2334
     ImageEditor openOnClass:self andSelector:#watchIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2335
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2336
    ^ Icon constantNamed:#'SystemBrowser class watchIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2337
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2338
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2339
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2340
                height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2341
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2342
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2343
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2344
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2345
                            fromPackedString:'@@X@@@X@@@@AE XQY @@XALCDFD@@AD0@CDV@@XAL@@1A @AD0@P@1D@XBI!!DVH A QUPQEEU@@%"EDAVHT@IX]R@%!!5@FQUH@@%U@A&H$@@P"X@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2346
                colorMapFromArray:#[ 0 0 51 0 0 60 0 51 102 51 102 153 71 102 145 128 213 221 153 153 204 153 255 255 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2347
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2348
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2349
                            height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2350
                            bits:(ByteArray fromPackedString:'FL@]0C7 O>A?<G?0??#=>O78?_#8>GA0');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2351
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2352
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2353
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2354
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2355
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2356
windowClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2357
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2358
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2359
    ^ ToolbarIconLibrary windowClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2360
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2361
    "Modified: / 20-07-2007 / 09:05:57 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2362
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2363
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2364
windowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2365
    <resource: #image>
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2366
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2367
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2368
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2369
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2370
    "
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2371
     self windowIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2372
     ImageEditor openOnClass:self andSelector:#windowIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2373
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2374
    ^ Icon constantNamed:#'SystemBrowser class windowIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2375
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2376
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2377
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2378
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2379
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2380
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2381
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2382
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2383
                            fromPackedString:'@@@@@@@@@@.;.;.;.0@@@@@@@@@@C.;.;.;/@@9&Y&Y&XP@NY&Y&Y&D@C&Y&Y&Y!!@@9&Y&Y&XP@NY&Y&Y&D@C1DQDQDQ@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2384
                colorMapFromArray:#[ 0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2385
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2386
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2387
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2388
                            bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2389
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2390
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2391
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2392
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2393
    "Created: / 5.11.2001 / 09:39:03 / cg"
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2394
! !
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  2395
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2396
!SystemBrowser class methodsFor:'interface specs'!
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2397
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2398
metaSpec
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2399
        "UIPainter new openOnClass: self andSelector: #metaSpec"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2400
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2401
        <resource: #canvas>
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2402
        ^#(#FullSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2403
                #window: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2404
                #(#WindowSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2405
                        #label: 'Unlabeled Canvas' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2406
                        #bounds: #(#Rectangle 27 249 325 334 ) ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2407
                #component: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2408
                #(#SpecCollection 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2409
                        #collection: #(
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2410
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2411
                                        #layout: #(#LayoutFrame 0 0 4 0 -1 0.575 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2412
                                        #name: #instanceSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2413
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2414
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2415
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2416
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2417
                                        #label: 'instance' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2418
                                        #select: false ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2419
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2420
                                        #layout: #(#LayoutFrame 1 0.575 4 0 -1 1 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2421
                                        #name: #classSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2422
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2423
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2424
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2425
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2426
                                        #label: 'class' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2427
                                        #select: true ) ) ) )
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2428
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2429
    "Created: / 30.10.1997 / 19:07:29 / cg"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2430
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2431
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2432
methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2433
    "This resource specification was automatically generated
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2434
     by the UIPainter of ST/X."
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2435
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2436
    "Do not manually edit this!! If it is corrupted,
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2437
     the UIPainter may not be able to read the specification."
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2438
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2439
    "
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2440
     UIPainter new openOnClass:SystemBrowser andSelector:#methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2441
     SystemBrowser new openInterface:#methodMoveDialogSpec
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2442
    "
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2443
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2444
    <resource: #canvas>
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2445
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2446
    ^ 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2447
    #(FullSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2448
       name: methodMoveDialogSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2449
       window: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2450
      (WindowSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2451
         label: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2452
         name: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2453
         bounds: (Rectangle 0 0 387 118)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2454
       )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2455
       component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2456
      (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2457
         collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2458
          (HorizontalPanelViewSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2459
             name: 'horizontalPanelView'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2460
             layout: (LayoutFrame 0 0.0 -35 1.0 0 1.0 -2 1.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2461
             level: 0
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2462
             horizontalLayout: fitSpace
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2463
             verticalLayout: center
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2464
             horizontalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2465
             verticalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2466
             component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2467
            (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2468
               collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2469
                (ActionButtonSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2470
                   label: 'cancel'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2471
                   name: 'actionButton2'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2472
                   translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2473
                   tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2474
                   model: cancel
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2475
                   extent: (Point 187 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2476
                 )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2477
                (ActionButtonSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2478
                   label: 'move'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2479
                   name: 'actionButton1'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2480
                   translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2481
                   tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2482
                   model: accept
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2483
                   isDefault: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2484
                   extent: (Point 188 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2485
                 )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2486
                )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2487
              
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2488
             )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2489
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2490
          (LabelSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2491
             label: 'move current method to which class:'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2492
             name: 'label'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2493
             layout: (LayoutFrame 2 0 2 0 -2 1.0 25 0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2494
             style: largeLabelFont
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2495
             foregroundColor: (Color 0.0 0.0 0.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2496
             backgroundColor: (Color 67.0 67.0 67.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2497
             translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2498
             adjust: left
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2499
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2500
          (ComboBoxSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2501
             name: 'comboBox1'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2502
             layout: (LayoutFrame 2 0 29 0 -2 1.0 51 0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2503
             tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2504
             model: className
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2505
             comboList: classList
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2506
           )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2507
          )
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2508
        
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2509
       )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2510
     )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2511
! !
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2512
17734
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2513
!SystemBrowser class methodsFor:'private-code update'!
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2514
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2515
sourceOfMethod:mthd
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2516
    |code|
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2517
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2518
    code := mthd source.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2519
    code notNil ifTrue:[ ^ code].
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2520
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2521
    "/ wrong: even if there is no source, we
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2522
    "/ should be able to type in something and accept
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2523
    "/ self setNoAcceptAction.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2524
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2525
    (mthd sourcePosition isNil
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2526
    or:[mthd getSource isNil]) ifTrue:[
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2527
        ^ '"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2528
Sorry, but the method''s sourceCode is not available.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2529
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2530
Probably, the method''s sourceCode-info was stripped from the system.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2531
"'.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2532
    ].
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2533
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2534
    ^ '"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2535
Sorry, but the method''s sourceCode is not available or corrupted.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2536
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2537
',(Smalltalk isStandAloneApp ifTrue:['If this is a deployed application, this part of the source is probably not
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2538
part of the distribution (only the base Smalltalk/X framework is open-source).
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2539
'] ifFalse:['']),'
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2540
Please check the setting of your packagePath, which contains a collection of pathNames.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2541
The system searches those directories for a package-subdirectories,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2542
which should either contain the classes source file.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2543
Also, check if that directory and/or sourceFile grants read access.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2544
The packagePath can be accessed via
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2545
    Smalltalk packagePath
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2546
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2547
To fix this (in the running system), evaluate:
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2548
    Smalltalk packagePath addFirst:''<<pathOfDirContainingPackageDir>>''.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2549
    Smalltalk flushPathCaches.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2550
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2551
You may also want to add those statements to the end of your ''private.rc''
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2552
file - so you will not get this error again and again.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2553
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2554
Also, check if you have the sourceCodeManagement (CVS) enabled,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2555
and (if so) configured correctly.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2556
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2557
If all of the above fail, and you know the path of the source file,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2558
you can workaround the problem, by adding a symbolic link to that sourcefile
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2559
in the ''source'' directory.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2560
"'.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2561
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2562
    "Modified: / 09-11-2017 / 08:16:28 / cg"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2563
! !
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2564
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2565
!SystemBrowser class methodsFor:'private-helpers'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2566
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2567
askForPackageChangeFrom:oldPkg to:newPkg
3626
abf84bdbfdb2 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 3621
diff changeset
  2568
    |answer box notAgain chk|
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2569
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2570
    box := OptionBox 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2571
                title:
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2572
('You are about to change a method from another (system-) package.
17775
0bd37dc16a54 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17734
diff changeset
  2573
The method''s original packageID was ''%1''. 
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2574
If you proceed, the new method will be marked as belonging
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2575
to the ''%2'' package (and this warning will not be shown again).
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2576
If you proceed with ''keep'', the new method will be installed
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2577
but the old packageID will be preserved.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2578
Otherwise, hit ''cancel'' to leave the code unchanged.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2579
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2580
PS: if you disable this check here, it can be reenabled it in the launchers settings-compilation dialog.' 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2581
                        bindWith:(oldPkg allBold)
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2582
                            with:(newPkg allBold))
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2583
                numberOfOptions:3.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2584
3476
685f67f7e818 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
  2585
    box buttonTitles:#('Cancel' 'Keep' 'Continue').
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2586
    box defaultButtonIndex:3. 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2587
    box action:[:n | answer := #(#cancel #keep #continue) at:n].
5833
5c2a75846afc Do not use obsolete methods with #form:
Stefan Vogel <sv@exept.de>
parents: 5802
diff changeset
  2588
    box label:'Method redefinition'; image:(WarningBox iconBitmap).
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2589
    box yPosition:(box formLabel bottom max:box textLabel bottom).
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2590
    box addVerticalSpace:10.
17043
6185cc2147c2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16893
diff changeset
  2591
    chk := box addCheckBoxAtBottom:'Don''t show this dialog again (never keep)' on:(notAgain := false asValue).
8158
f7b891e7fb75 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8139
diff changeset
  2592
    box preferredExtent:(box preferredExtent + (0 @ chk preferredHeight) + (0@10)).
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2593
    box resize.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2594
    box showAtPointer.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2595
    box destroy.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2596
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2597
    (answer ~~ #cancel) ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2598
        notAgain value ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2599
            Class catchMethodRedefinitions:false.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2600
        ].
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2601
    ].
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2602
    ^ answer.
11291
d4d27edd6ab4 changed: #askForPackageChangeFrom:to:
Claus Gittinger <cg@exept.de>
parents: 11271
diff changeset
  2603
17775
0bd37dc16a54 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17734
diff changeset
  2604
    "Modified: / 21-11-2017 / 13:09:11 / cg"
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2605
!
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2606
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2607
showNoneFound
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2608
    self warn:(self classResources string:'None found.').
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2609
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2610
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2611
showNoneFound:what
1620
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2612
    |rs|
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2613
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2614
    rs := self classResources.
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2615
    self information:((rs string:what) , (rs string:'...\\... none found.')) withCRs.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2616
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2617
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2618
!SystemBrowser class methodsFor:'private-instance creation'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2619
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2620
newWithLabel:aString setupBlock:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2621
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2622
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2623
    ^ self newWithLabel:aString setupBlock:aBlock onDevice:Screen current
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2624
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2625
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2626
newWithLabel:aString setupBlock:aBlock onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2627
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2628
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2629
    |newBrowser|
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2630
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2631
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2632
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2633
    aBlock value:newBrowser.
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2634
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2635
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2636
    ^ newBrowser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2637
!
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2638
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2639
newWithLabel:aString setupSelector:aSymbol arg:arg
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2640
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2641
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2642
    ^ self newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:Screen current 
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2643
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2644
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2645
newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2646
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2647
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2648
    |newBrowser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2649
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2650
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2651
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2652
    newBrowser perform:aSymbol with:arg.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2653
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2654
    ^ newBrowser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2655
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2656
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  2657
!SystemBrowser class methodsFor:'special search startup'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2658
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2659
allCallsOn:aSelectorString
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2660
    "return a collection of methods which send aSelector.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2661
     This takes some time, because source code is parsed to see
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2662
     if there is really a message send inside (and not just a symbol reference)"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2663
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2664
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2665
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2666
        in:(Smalltalk allClasses) 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2667
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2668
        match:false
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2669
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2670
    "
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2671
     Time millisecondsToRun:[
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2672
         SystemBrowser allCallsOn:#at:put:
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2673
     ].            
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2674
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2675
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2676
    "Created: 24.1.1997 / 19:42:57 / cg"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2677
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2678
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2679
allCallsOn:aSelectorString in:aCollectionOfClasses
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2680
    "return a collection of methods which send aSelector.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2681
     Methods from classes in aCollectionOfClasses are searched only."
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2682
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2683
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2684
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2685
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2686
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2687
        match:false
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2688
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2689
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2690
allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2691
    "return a collection of methods which send aSelector.
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2692
     Methods from classes in aCollectionOfClasses are searched only."
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2693
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2694
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2695
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2696
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2697
        ignoreCase:ignoreCase 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2698
        match:true
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2699
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2700
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2701
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2702
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2703
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2704
    "Modified: 18.4.1997 / 10:32:50 / cg"
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2705
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2706
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2707
allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatchArg
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2708
    "return a collection of methods which send aSelector.
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2709
     Methods from classes in aCollectionOfClasses are searched only."
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2710
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2711
    |doMatch sel searchBlock classesSearched|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2712
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2713
    doMatch := doMatchArg.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2714
    (doMatch and:[aSelectorString includesMatchCharacters not]) ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2715
        doMatch := false.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2716
    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2717
        
3471
4c4b41516d96 care for empty selector in allCallsOn.
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
  2718
    aSelectorString size == 0 ifTrue:[ ^ #() ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2719
    (doMatch or:[ignoreCase]) ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2720
        "/ no need to search, if there is no such symbol in the system
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2721
        sel := aSelectorString asSymbolIfInterned.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2722
        sel isNil ifTrue:[ ^ #() ].   "/ none (no such selector)
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2723
    ]. 
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2724
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2725
    classesSearched := aCollectionOfClasses.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2726
    doMatch ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2727
        "/ exclude all javaClasses, if the selector cannot be a valid java-selector
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2728
        (aSelectorString includes:$() ifFalse:[
12831
f7fe86345bc4 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12822
diff changeset
  2729
            classesSearched := classesSearched reject:[:eachClass | eachClass theNonMetaclass isJavaClass ].
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2730
        ].
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2731
    ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2732
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2733
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
4332
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2734
    searchBlock isNil ifTrue:[
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2735
        ^ #()    "/ none (no such selector)
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2736
    ].
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2737
    ^ self allMethodsIn:classesSearched where:searchBlock
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2738
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2739
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2740
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2741
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2742
1143
0707461e582a avoid compilation of lazy methods when searching for senders
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2743
    "Modified: 18.4.1997 / 10:32:50 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2744
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2745
19026
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2746
allCallsUsingReturnValueOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatchArg
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2747
    "return a collection of methods which send aSelector and use the return value.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2748
     Methods from classes in aCollectionOfClasses are searched only."
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2749
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2750
    |doMatch sel searchBlock classesSearched|
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2751
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2752
    doMatch := doMatchArg.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2753
    (doMatch and:[aSelectorString includesMatchCharacters not]) ifTrue:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2754
        doMatch := false.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2755
    ].    
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2756
        
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2757
    aSelectorString size == 0 ifTrue:[ ^ #() ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2758
    (doMatch or:[ignoreCase]) ifFalse:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2759
        "/ no need to search, if there is no such symbol in the system
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2760
        sel := aSelectorString asSymbolIfInterned.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2761
        sel isNil ifTrue:[ ^ #() ].   "/ none (no such selector)
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2762
    ]. 
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2763
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2764
    classesSearched := aCollectionOfClasses.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2765
    doMatch ifFalse:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2766
        "/ exclude all javaClasses, if the selector cannot be a valid java-selector
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2767
        (aSelectorString includes:$() ifFalse:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2768
            classesSearched := classesSearched reject:[:eachClass | eachClass theNonMetaclass isJavaClass ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2769
        ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2770
    ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2771
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2772
    searchBlock := self searchBlockForAllCallsUsingReturnValueOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2773
    searchBlock isNil ifTrue:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2774
        ^ #()    "/ none (no such selector)
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2775
    ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2776
    ^ self allMethodsIn:classesSearched where:searchBlock
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2777
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2778
    "
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2779
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2780
    "
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2781
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2782
    "Modified: 18.4.1997 / 10:32:50 / cg"
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2783
!
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  2784
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2785
allMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2786
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2787
     wantInst/wantClass control if instMethods and/or classMethods are to be
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2788
     considered.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2789
     Only classes in aCollectionOfClasses are inspected in the search"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2790
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2791
    |list activePriority|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2792
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2793
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2794
     since this may take a long time, lower my priority ...
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2795
    "
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2796
    activePriority := Processor activePriority.
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  2797
    Processor activeProcess 
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2798
        withPriority:activePriority-1 to:activePriority
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  2799
    do:[
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2800
        |checkedClasses checkBlock detectedMethods|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2801
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2802
        checkedClasses := IdentitySet new.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2803
        list := OrderedCollection new.
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2804
        detectedMethods := IdentitySet new.
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2805
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2806
        checkBlock := [:cls |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2807
            (checkedClasses includes:cls) ifFalse:[
8554
441ea25ad1fd Do not complain about obsolete classes which are unloaded when searching
Stefan Vogel <sv@exept.de>
parents: 8505
diff changeset
  2808
                (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2809
                    Logger debug:'Browser method search: skipping obsolete class: %1' with:cls displayString
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2810
                ] ifFalse:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2811
                    cls methodDictionary keysAndValuesDo:[:sel :method |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2812
                        (aBlock value:cls value:method value:sel) ifTrue:[
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2813
                            "/ care for methods being in multiple classes (should not happen)
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2814
                            (detectedMethods includes:method) ifFalse:[
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2815
                                list add:method.
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2816
                                detectedMethods add:method
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2817
                            ]
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2818
                        ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2819
                    ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2820
                    checkedClasses add:cls.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2821
                ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2822
            ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2823
        ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2824
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2825
        aCollectionOfClasses do:[:aClass |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2826
            "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2827
             output disabled - it slows down things too much (when searching for
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2828
             implementors or senders)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2829
            "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2830
            wantInst ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2831
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2832
                checkBlock value:aClass
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2833
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2834
            wantClass ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2835
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2836
                checkBlock value:(aClass class)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2837
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2838
            Processor yield
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2839
        ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2840
    ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2841
    ^ list
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2842
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2843
    "Created: / 24-01-1997 / 19:41:12 / cg"
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2844
    "Modified: / 14-03-2017 / 12:05:41 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2845
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2846
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2847
allMethodsIn:aCollectionOfClasses where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2848
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2849
     Only classes in aCollectionOfClasses are inspected in the search"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2850
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2851
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2852
        allMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2853
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2854
        class:true
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2855
        where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2856
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2857
    "Created: 24.1.1997 / 19:41:49 / cg"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2858
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2859
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2860
aproposSearch:aString
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2861
    "browse all methods, which have aString in their selector."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2862
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2863
    ^ self aproposSearch:aString in:(Smalltalk allClasses)
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  2864
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2865
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2866
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2867
aproposSearch:aString in:aCollectionOfClasses
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2868
    "browse all methods, which have aString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2869
     This is relatively slow, since all source must be processed."
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2870
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2871
    |matchString list s searchBlock browser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2872
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2873
    matchString := '*' , aString , '*'.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2874
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2875
    list := OrderedCollection new.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2876
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2877
    (aString includesMatchCharacters) ifTrue:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2878
        s := '*' , aString asLowercase , '*'.
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2879
        "a matchString"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2880
        searchBlock := [:text | (text asCollectionOfLinesfindFirst:[:line | s match:line]) ~~ 0].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2881
    ] ifFalse:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2882
        searchBlock := [:source | (source findString:aString asLowercase) ~~ 0]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2883
    ].
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2884
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2885
    browser := self browseMethodsIn:aCollectionOfClasses 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2886
                     where:[:class :method :sel |
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2887
                                |comment|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2888
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2889
                                (searchBlock value:sel asLowercase)
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2890
                           ]
2729
9af04074a4bb no direct access to super-class-instvars
Claus Gittinger <cg@exept.de>
parents: 2728
diff changeset
  2891
                     title:(self classResources string:'selectors containing: %1' with:aString).
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2892
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2893
    browser notNil ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2894
        browser autoSearch:aString 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2895
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2896
    ^ browser
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2897
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2898
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2899
     SystemBrowser aproposSearch:'append' in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2900
     SystemBrowser aproposSearch:'add'    in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2901
     SystemBrowser aproposSearch:'sort'   in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2902
     SystemBrowser aproposSearch:'[Aa]bsent' in:(Collection withAllSubclasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2903
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2904
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2905
    "Created: 9.12.1995 / 18:02:36 / cg"
204
6f4460d5a09d added supersend searches; offer comparing the current version with the
Claus Gittinger <cg@exept.de>
parents: 203
diff changeset
  2906
!
6f4460d5a09d added supersend searches; offer comparing the current version with the
Claus Gittinger <cg@exept.de>
parents: 203
diff changeset
  2907
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2908
browseAllCallsOn:aSelectorString
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2909
    "launch a browser for all senders of aSelector.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2910
     Notice: better go via Smalltalk browseAllCallsOn:, which honors the tool-preferences"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2911
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2912
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2913
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2914
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2915
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2916
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2917
     SystemBrowser browseAllCallsOn:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2918
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2919
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2920
    "Created: 9.12.1995 / 18:00:41 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2921
    "Modified: 10.7.1996 / 10:26:15 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2922
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2923
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2924
browseAllCallsOn:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2925
    "launch a browser for all senders of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2926
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2927
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2928
        browseAllCallsOn:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2929
        in:aSetOfClasses
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2930
        title:(self classResources string:'Senders of: %1' with:aSelectorString)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2931
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2932
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2933
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2934
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2935
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2936
    "Created: 10.7.1996 / 10:25:49 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2937
    "Modified: 24.1.1997 / 19:49:34 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2938
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2939
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2940
browseAllCallsOn:aSelectorString in:aSetOfClasses ignoreCase:ignoreCase
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2941
    "launch a browser for all senders of aSelector"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2942
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2943
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2944
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2945
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2946
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  2947
        title:(self classResources string:'Senders of: %1' with:aSelectorString)
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2948
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2949
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2950
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2951
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2952
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2953
    "Created: 10.7.1996 / 10:25:49 / cg"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2954
    "Modified: 24.1.1997 / 19:49:34 / cg"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2955
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2956
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2957
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:match title:titleArg
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2958
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2959
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2960
    |list list2 browser selWithColon title rs|
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2961
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2962
    title := titleArg.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2963
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2964
    list := self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2965
    list isEmpty ifTrue:[
19130
3a3f3accc53d #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19026
diff changeset
  2966
        aSelectorString argumentCount == 0 ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2967
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2968
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2969
                list2 := self allCallsOn:selWithColon in:aCollectionOfClasses ignoreCase:ignoreCase match:true.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2970
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2971
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2972
        list2 size == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2973
            self showNoneFound:title.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2974
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2975
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2976
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2977
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2978
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2979
                         (rs string:'\\But I found %1 sends of the "%2" message (with colon).\\Browse those ?'
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2980
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2981
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2982
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2983
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2984
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2985
        title := title , ':'.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2986
    ].
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2987
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2988
    browser := self browseMethods:list title:title.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2989
    browser notNil ifTrue:[
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  2990
        |s|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2991
8139
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2992
"/        "
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  2993
"/         kludge for now, if it's a multipart selector,
8139
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2994
"/         no easy search is (as yet) possible
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2995
"/        "
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2996
"/        s := aSelectorString.
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2997
"/        (s includes:$:) ifTrue:[
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2998
"/            s := s copyTo:(s indexOf:$:)
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2999
"/        ].
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  3000
"/        browser autoSearch:s 
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3001
        browser setSearchSelector:aSelectorString ignoreCase:ignoreCase doMatch:true.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3002
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3003
    ^ browser
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  3004
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3005
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3006
     SystemBrowser
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3007
        browseAllCallsOn:#+ 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3008
        in:(Number withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3009
        title:'just a test'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3010
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3011
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3012
    "Modified: / 24-01-1997 / 19:48:54 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3013
    "Created: / 14-02-2012 / 14:19:51 / cg"
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  3014
    "Modified (format): / 13-02-2017 / 20:31:46 / cg"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3015
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3016
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3017
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3018
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3019
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3020
    ^ self 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3021
        browseAllCallsOn:aSelectorString 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3022
        in:aCollectionOfClasses 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3023
        ignoreCase:ignoreCase 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3024
        match:true 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3025
        title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3026
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3027
    "
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3028
     SystemBrowser
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3029
        browseAllCallsOn:#+ 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3030
        in:(Number withAllSubclasses) 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3031
        title:'just a test'
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3032
    "
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3033
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3034
    "Modified: / 14-02-2012 / 14:20:17 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3035
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3036
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3037
browseAllCallsOn:aSelectorString in:aCollectionOfClasses title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3038
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3039
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3040
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3041
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3042
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3043
        ignoreCase:false 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3044
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3045
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3046
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3047
     SystemBrowser
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3048
        browseAllCallsOn:#+ 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3049
        in:(Number withAllSubclasses) 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3050
        title:'just a test'
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3051
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3052
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3053
    "Modified: 24.1.1997 / 19:48:54 / cg"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3054
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3055
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3056
browseCallsOn:aSelectorString under:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3057
    "launch a browser for all senders of aSelector in aClass and subclasses"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3058
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3059
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3060
        browseAllCallsOn:aSelectorString
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3061
                      in:(aClass withAllSubclasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3062
                   title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3063
                                string:'Senders of: %1 (in and below %2)'
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3064
                                with:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3065
                                with:aClass name)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3066
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3067
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3068
     SystemBrowser browseCallsOn:#+ under:Number
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3069
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3070
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3071
    "Created: 9.12.1995 / 17:59:57 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3072
    "Modified: 24.1.1997 / 19:50:33 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3073
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3074
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3075
browseClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3076
    "launch a browser for all methods in aClass where the classVar named
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3077
     aString is referenced; if modsOnly is true, browse only methods where the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3078
     classvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3079
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3080
    ^ self browseRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3081
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3082
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3083
browseClassRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3084
    "launch a browser for all methods in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3085
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3086
     if modsOnly is true, browse only methods where the classvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3087
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3088
    ^ self browseRefsTo:varName classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3089
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3090
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3091
browseClassRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3092
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3093
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3094
     if modsOnly is true, browse only methods where the classvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3095
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3096
    ^ self browseClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3097
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3098
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3099
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3100
browseForResource:aResourceSymbol containing:item in:aCollectionOfClasses title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3101
    "launch a browser for all methods which have a particular (or any, ifNil)
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3102
     resource in aCollectionOfClasses.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3103
     If aKey is nonNil, only methods which have aKey in the (any) resourceSpec
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3104
     are parsed.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3105
     I.e. to find all methods, which access the styleSheets, use:
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3106
        browseForResource:#style containing:nil in:... title:...
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3107
     to find methods which access the 'arrowButtonDownForm' styleSheet entry, use:
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3108
        browseForResource:#style containing:'arrowButtonDownForm' in:... title:..."
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3109
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  3110
    |browser searchBlock|
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3111
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3112
    "/ search for any resource can be done without looking
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3113
    "/ at the source ...
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3114
    (aResourceSymbol isNil and:[item isNil]) ifTrue:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3115
        searchBlock := [:class :method :s | method hasResource]
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3116
    ] ifFalse:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3117
        searchBlock := [:class :method :s |
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3118
                            |rsrc val found|
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3119
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3120
                            found := false.
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3121
                            method hasResource ifTrue:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3122
                                rsrc := method resources.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3123
                                rsrc notNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3124
                                    aResourceSymbol isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3125
                                        item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3126
                                            found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3127
                                        ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3128
                                            rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3129
                                                rsrc keysAndValuesDo:[:rsrc :val |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3130
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3131
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3132
                                                            found := item match:v printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3133
                                                        ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3134
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3135
                                                        found := item match:val printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3136
                                                    ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3137
                                                ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3138
                                            ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3139
                                                found := item match:rsrc printString
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3140
                                            ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3141
                                        ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3142
                                    ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3143
                                        (rsrc includesKey:aResourceSymbol) ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3144
                                            item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3145
                                                found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3146
                                            ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3147
                                                rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3148
                                                    val := rsrc at:aResourceSymbol.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3149
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3150
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3151
                                                            found := item match:v printString 
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3152
                                                        ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3153
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3154
                                                        found := item match:val printString 
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3155
                                                    ]
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3156
                                                ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3157
                                                    found := item match:rsrc printString
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3158
                                                ]
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3159
                                            ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3160
                                        ]
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3161
                                    ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3162
                                ].
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3163
                            ].
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3164
                            found
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3165
                       ].
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3166
    ].
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3167
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3168
    browser := self browseMethodsIn:aCollectionOfClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3169
                              where:searchBlock
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3170
                              title:title.
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3171
    browser notNil ifTrue:[
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3172
        browser autoSearch:'resource:' 
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3173
    ].
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3174
    ^ browser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3175
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3176
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3177
     SystemBrowser
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3178
        browseForResource:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3179
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3180
        title:'methods with a resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3181
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3182
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3183
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3184
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3185
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3186
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3187
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3188
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3189
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3190
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3191
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3192
        containing:'arrowButton*'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3193
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3194
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3195
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3196
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3197
    "Modified: / 22.4.1998 / 10:29:20 / cg"
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3198
!
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3199
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3200
browseForResource:aResourceSymbol in:aCollectionOfClasses title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3201
    "launch a browser for all methods which have a particular (or any, ifNil)
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3202
     resource in aCollectionOfClasses"
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3203
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3204
    ^ self
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3205
        browseForResource:aResourceSymbol
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3206
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3207
        in:aCollectionOfClasses 
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3208
        title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3209
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3210
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3211
     SystemBrowser
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3212
        browseForResource:#style
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3213
        in:Smalltalk allClasses
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3214
        title:'methods accessing styleSheet values'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3215
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3216
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3217
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3218
        browseForResource:#keyboard
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3219
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3220
        title:'methods handling keyboard events'
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3221
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3222
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3223
     SystemBrowser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3224
        browseForResource:nil
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3225
        in:Smalltalk allClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3226
        title:'methods with a resource'
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3227
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3228
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3229
    "Modified: 9.1.1997 / 12:44:38 / cg"
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3230
!
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3231
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3232
browseForString:aString
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3233
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3234
    "launch a browser for all methods containing a string in their source.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3235
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3236
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3237
    ^ self browseForString:aString in:(Smalltalk allClasses) ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3238
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3239
    "Modified: / 18.6.1998 / 16:42:39 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3240
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3241
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3242
browseForString:aString in:aCollectionOfClasses
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3243
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3244
    "launch a browser for all methods in aCollectionOfClasses  
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3245
     containing a string in their source.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3246
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3247
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3248
    ^ self
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3249
        browseForString:aString 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3250
        in:aCollectionOfClasses 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3251
        ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3252
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3253
    "
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3254
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3255
     SystemBrowser browseForString:'should'   in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3256
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3257
    "
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3258
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3259
    "Created: / 9.12.1995 / 18:03:12 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3260
    "Modified: / 18.6.1998 / 16:43:27 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3261
!
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3262
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3263
browseForString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3264
    <resource: #obsolete>
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3265
    "launch a browser for all methods in aCollectionOfClasses  
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3266
     containing a string in their source.
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3267
     This may be slow, since source-code has to be scanned."
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3268
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3269
    |browser searchBlock title s|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3270
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3271
    title := self classResources string:'Methods containing: %1' with:aString displayString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3272
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3273
    (aString includesMatchCharacters
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3274
    or:[ignoreCase]) ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3275
        s := '*' , aString , '*'.
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3276
        "a matchString"
475
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3277
        searchBlock := [:c :m :sel | 
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3278
                            |src|       
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3279
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3280
                            src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  3281
                                ('Browser [info]: no source for ' , m whoString "printString") infoPrintCR.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3282
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3283
                            ] ifFalse:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  3284
                                s match:src caseSensitive:ignoreCase not
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3285
                            ]
475
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3286
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3287
    ] ifFalse:[
475
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3288
        searchBlock := [:c :m :sel | 
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3289
                            |src|
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3290
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3291
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3292
                            src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  3293
                                ('Browser [info]: no source for ' , m whoString "printString") infoPrintCR.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3294
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3295
                            ] ifFalse:[
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3296
                                (src findString:aString) ~~ 0
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3297
                            ]
475
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3298
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3299
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3300
    browser := self browseMethodsIn:aCollectionOfClasses where:searchBlock title:title.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3301
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3302
    browser notNil ifTrue:[
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3303
        browser autoSearch:aString ignoreCase:ignoreCase
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3304
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3305
    ^ browser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3306
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3307
    "
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3308
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3309
     SystemBrowser browseForString:'should'   in:(Array with:Object)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3310
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3311
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3312
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3313
    "Created: / 18.6.1998 / 16:42:50 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3314
    "Modified: / 18.6.1998 / 16:51:25 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3315
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3316
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3317
browseForSymbol:aSymbol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3318
    "launch a browser for all methods referencing aSymbol"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3319
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3320
    ^ self 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3321
        browseForSymbol:aSymbol 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3322
        title:(self classResources string:'Users of: %1' with:aSymbol) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3323
        warnIfNone:true
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3324
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3325
    "Created: 9.12.1995 / 18:04:34 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3326
    "Modified: 10.7.1996 / 10:35:34 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3327
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3328
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3329
browseForSymbol:aSymbol in:aSetOfClasses title:title warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3330
    "launch a browser for all methods referencing aSymbol"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3331
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3332
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3333
        browseForSymbol:aSymbol 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3334
        in:aSetOfClasses 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3335
        title:title 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3336
        warnIfNone:doWarn
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3337
        searchFor:aSymbol
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3338
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3339
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3340
browseForSymbol:aSymbol in:aSetOfClasses title:title warnIfNone:doWarn searchFor:searchString
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3341
    "launch a browser for all methods referencing aSymbol"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3342
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3343
    |browser searchBlock sym|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3344
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3345
    (aSymbol includesMatchCharacters) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3346
        "a matchString"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3347
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3348
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3349
                                (aLiteral isMemberOf:Symbol) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3350
                                  and:[aSymbol match:aLiteral]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3351
                            ] ifNone:nil) notNil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3352
                       ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3353
    ] ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3354
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3355
         can do a faster search
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3356
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3357
        sym := aSymbol asSymbolIfInterned.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3358
        sym isNil ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3359
            self showNoneFound:title.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3360
            ^ nil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3361
        ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3362
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3363
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3364
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3365
                                (sym == aLiteral) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3366
                            ] ifNone:nil) notNil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3367
                       ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3368
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3369
    doWarn ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3370
        WarningSignal ignoreIn:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3371
            browser := self browseMethodsIn:aSetOfClasses where:searchBlock title:title.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3372
        ]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3373
    ] ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3374
        browser := self browseMethodsIn:aSetOfClasses where:searchBlock title:title.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3375
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3376
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3377
    (browser notNil 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3378
    and:[searchString notNil]) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3379
        browser autoSearch:searchString
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3380
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3381
    ^ browser
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3382
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3383
    "Modified: 24.6.1996 / 14:39:07 / stefan"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3384
    "Modified: 30.6.1996 / 16:45:25 / cg"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3385
    "Created: 31.10.1996 / 14:57:30 / cg"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3386
!
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3387
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3388
browseForSymbol:aSymbol title:title ifNone:actionIfNoneFound searchFor:searchString
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3389
    "launch a browser for all methods referencing aSymbol"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3390
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3391
    |browser searchBlock|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3392
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3393
    searchBlock := self searchBlockForSymbol:aSymbol.
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3394
    searchBlock == false ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3395
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3396
        ^ nil
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3397
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3398
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3399
    WarningSignal ignoreIn:[
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3400
        InformationSignal ignoreIn:[
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3401
            browser := self browseMethodsWhere:searchBlock title:title.
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3402
        ]
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3403
    ].
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3404
    browser isNil ifTrue:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3405
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3406
        ^ nil
215
244f3a9b2a60 check for existing class in rename; avoid warnbox if no refs are found after rename
Claus Gittinger <cg@exept.de>
parents: 204
diff changeset
  3407
    ].
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3408
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3409
    (browser notNil and:[searchString notNil]) ifTrue:[
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3410
        browser autoSearch:searchString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3411
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3412
    ^ browser
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3413
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3414
    "Modified: / 24-06-1996 / 14:39:07 / stefan"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3415
    "Created: / 31-10-1996 / 14:45:08 / cg"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3416
    "Modified: / 22-03-2012 / 06:58:07 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3417
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3418
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3419
browseForSymbol:aSymbol title:title warnIfNone:doWarn
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3420
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3421
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3422
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3423
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3424
        title:title 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3425
        warnIfNone:doWarn 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3426
        searchFor:aSymbol
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3427
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3428
    "Modified: 31.10.1996 / 14:45:38 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3429
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3430
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3431
browseForSymbol:aSymbol title:title warnIfNone:doWarn searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3432
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3433
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3434
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3435
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3436
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3437
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3438
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3439
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3440
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3441
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3442
        ifNone:b
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3443
        searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3444
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3445
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3446
browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3447
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3448
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3449
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3450
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3451
        in:(Smalltalk allClasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3452
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3453
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3454
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3455
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3456
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3457
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3458
    "Created: / 9.12.1995 / 18:01:18 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3459
    "Modified: / 5.11.2001 / 17:31:11 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3460
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3461
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3462
browseImplementorsMatching:aSelectorString in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3463
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3464
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3465
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3466
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3467
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3468
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3469
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3470
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3471
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3472
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3473
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3474
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3475
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3476
    "Modified: / 5.11.2001 / 17:30:57 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3477
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3478
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3479
browseImplementorsMatching:aSelectorString in:aSetOfClasses ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3480
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3481
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3482
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3483
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3484
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3485
        ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3486
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3487
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3488
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3489
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3490
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3491
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3492
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3493
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3494
    "Modified: / 5.11.2001 / 17:30:43 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3495
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3496
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3497
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3498
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3499
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3500
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3501
    |list|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3502
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3503
    list := self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3504
                findImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3505
                in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3506
                ignoreCase:ignoreCase.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3507
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3508
    list size == 0 ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3509
        self showNoneFound:title.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3510
        ^ nil
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3511
    ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3512
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3513
    ^ self browseMethods:list asOrderedCollection title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3514
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3515
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3516
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3517
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3518
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3519
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3520
                                  title:'some implementors of +'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3521
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3522
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3523
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3524
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3525
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3526
                                  title:'some implementors of +'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3527
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3528
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3529
    "Modified: / 4.9.1995 / 17:33:39 / claus"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3530
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3531
    "Modified: / 5.11.2001 / 17:30:38 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3532
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3533
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3534
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3535
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3536
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3537
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3538
    ^ self
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3539
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3540
        in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3541
        ignoreCase:false
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3542
        title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3543
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3544
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3545
browseImplementorsMatching:aSelectorString under:aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3546
    "launch a browser for all implementors of aSelector in aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3547
     and its subclasses"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3548
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3549
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3550
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3551
        in:(aClass withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3552
        title:(self classResources 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3553
                string:'implementors of: %1 (in and below %2)' 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3554
                with:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3555
                with:aClass name)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3556
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3557
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3558
     SystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3559
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3560
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3561
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3562
    "Created: / 9.12.1995 / 18:06:09 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3563
    "Modified: / 5.11.2001 / 17:30:15 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3564
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3565
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3566
browseImplementorsOf:aSelectorString
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3567
    "launch a browser for all implementors of aSelector"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3568
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3569
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3570
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3571
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3572
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3573
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3574
     SystemBrowser browseImplementorsOf:#+
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3575
     NewSystemBrowser browseImplementorsOf:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3576
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3577
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3578
    "Created: / 9.12.1995 / 18:01:18 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3579
    "Modified: / 5.11.2001 / 17:31:11 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3580
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3581
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3582
browseImplementorsOf:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3583
    "launch a browser for all implementors of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3584
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3585
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3586
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3587
        in:aSetOfClasses
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
  3588
        title:(self classResources string:'Implementors of: %1' with:aSelectorString allBold)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3589
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3590
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3591
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3592
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3593
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3594
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3595
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3596
    "Modified: / 5.11.2001 / 17:30:57 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3597
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3598
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3599
browseImplementorsOf:aSelectorString in:aSetOfClasses ignoreCase:ignoreCase
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3600
    "launch a browser for all implementors of aSelector"
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3601
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3602
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3603
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3604
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3605
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3606
        title:(self classResources string:'Implementors of: %1' with:aSelectorString)
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3607
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3608
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3609
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3610
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3611
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3612
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3613
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3614
    "Modified: / 5.11.2001 / 17:30:43 / cg"
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3615
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3616
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3617
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3618
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3619
     the classes contained in aCollectionOfClasses and their metaclasses"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3620
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3621
    doMatch ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3622
        self browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3623
    ] ifFalse:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3624
        self browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3625
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3626
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3627
    "Created: / 14-02-2012 / 13:55:23 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3628
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3629
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3630
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3631
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3632
     the classes contained in aCollectionOfClasses and their metaclasses"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3633
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3634
    |list list2 rs selWithColon title top20 allSelectors choice but globalClass global globalName lcSelector|
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3635
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3636
    title := titleArg.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3637
    list := self 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3638
                findImplementors:aSelectorString 
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3639
                in:aCollectionOfClasses 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3640
                ignoreCase:ignoreCase
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3641
                match:(aSelectorString includesMatchCharacters and:[aSelectorString ~= '*']).
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3642
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3643
    list size == 0 ifTrue:[
19130
3a3f3accc53d #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19026
diff changeset
  3644
        aSelectorString argumentCount == 0 ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3645
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3646
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3647
                list2 := self findImplementorsOf:selWithColon in:aCollectionOfClasses ignoreCase:ignoreCase.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3648
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3649
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3650
        list2 size == 0 ifTrue:[
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3651
            "/ self showNoneFound:title.
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3652
            "/ ^ self
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3653
            lcSelector := aSelectorString asLowercase.
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3654
            
8688
71d973fdd817 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8685
diff changeset
  3655
            allSelectors := Set new.
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3656
            top20 := SortedCollection new.
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3657
            top20 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3658
                sortBlock:[:a :b | 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3659
                    |isPrefixOfA isPrefixOfB aDist bDist|
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3660
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3661
                    isPrefixOfA := (a asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3662
                    isPrefixOfB := (b asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3663
                    (isPrefixOfA and:[isPrefixOfB not])
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3664
                    or:[ 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3665
                        aDist := (a spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3666
                        bDist := (b spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3667
                        (isPrefixOfA and:[isPrefixOfB and:[aDist > bDist]])     
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3668
                        or:[ isPrefixOfB not and:[ aDist > bDist ]]]
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3669
                ].
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3670
            Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3671
                ((eachSelector asLowercase startsWith:lcSelector) or:[(eachSelector spellAgainst:aSelectorString) > 50]) ifTrue:[    
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3672
                    (allSelectors includes:eachSelector) ifFalse:[
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3673
                        allSelectors add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3674
                        top20 add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3675
                        top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3676
                    ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3677
                ]
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3678
            ].
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3679
            top20 isEmpty ifTrue:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3680
                Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3681
                    (eachSelector asLowercase spellAgainst:lcSelector) > 50 ifTrue:[    
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3682
                        (allSelectors includes:eachSelector) ifFalse:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3683
                            allSelectors add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3684
                            top20 add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3685
                            top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3686
                        ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3687
                    ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3688
                ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3689
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3690
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3691
            "/ for your convenience: look for a global class by that name, and offer browsing the class
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3692
            but := ''.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3693
            (globalClass := Smalltalk classNamed:aSelectorString) notNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3694
                top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',aSelectorString,' <<'); yourself.
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3695
                but := '\But there exists a class by that name.'.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3696
            ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3697
                (aSelectorString knownAsSymbol 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3698
                and:[ (global := Smalltalk at:aSelectorString asSymbol) notNil ])
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3699
                ifTrue:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3700
                    global isBehavior ifTrue:[ 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3701
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse alias ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3702
                        but := '\But there exists a global alias by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3703
                        globalClass := global
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3704
                    ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3705
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class of ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3706
                        but := '\But there exists a global by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3707
                        globalClass := global class.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3708
                    ]
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3709
                ].
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3710
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3711
            "/ for your convenience: look for any namespace class by that name, and offer browsing the class
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3712
            but isEmpty ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3713
                globalName := Smalltalk keys  
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3714
                                detect:[:nm | (nm includesString:'::')
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3715
                                               and:[ (nm includesString:aSelectorString) 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3716
                                               and:[ (nm endsWith:('::',aSelectorString)) ]]] 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3717
                                ifNone:nil. 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3718
                globalName notNil ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3719
                    globalClass := Smalltalk at:globalName.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3720
                    globalClass isBehavior ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3721
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',globalClass name,' <<'); yourself.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3722
                        but := '\But there exists a class in some namespace by that name.'.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3723
                    ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3724
                ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3725
            ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3726
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3727
            choice := Dialog 
18869
b2a1d8c43b95 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 18807
diff changeset
  3728
                choose:(title,(self resources string:' - none found.'),but,(self resources stringWithCRs:'\\Browse implementors of a similar selector or cancel:'))
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3729
                fromList:top20 
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3730
                lines:10.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3731
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3732
            choice notEmptyOrNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3733
                (choice startsWith:'>>') ifTrue:[
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3734
                    self openInClass:globalClass selector:nil.
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3735
                ] ifFalse:[
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3736
                    self browseImplementorsOf:choice in:aCollectionOfClasses ignoreCase:ignoreCase title:'Implementors of ',choice.
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3737
                ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3738
            ].
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3739
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3740
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3741
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3742
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3743
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3744
                         (rs string:'\\But I found %1 implementor(s) of the "%2" message (with colon).\\Browse those ?'
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3745
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3746
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3747
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3748
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3749
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3750
        title := title , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3751
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3752
    ].
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3753
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3754
    ^ self browseMethods:list asOrderedCollection title:title
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3755
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3756
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3757
     SystemBrowser browseImplementorsOf:#+
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3758
                                     in:(Array with:Number
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3759
                                               with:Float
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3760
                                               with:SmallInteger)
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3761
                                  title:'some implementors of +'
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3762
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3763
     NewSystemBrowser browseImplementorsOf:#+
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3764
                                     in:(Array with:Number
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3765
                                               with:Float
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3766
                                               with:SmallInteger)
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3767
                                  title:'some implementors of +'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3768
    "
132
claus
parents: 118
diff changeset
  3769
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3770
    "Modified: / 04-09-1995 / 17:33:39 / claus"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3771
    "Modified: / 19-06-1996 / 14:19:02 / stefan"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3772
    "Modified: / 15-01-2011 / 14:35:56 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3773
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3774
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3775
browseImplementorsOf:aSelectorString in:aCollectionOfClasses title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3776
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3777
     the classes contained in aCollectionOfClasses and their metaclasses"
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3778
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3779
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3780
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3781
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3782
        ignoreCase:false
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3783
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3784
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3785
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3786
browseImplementorsOf:aSelectorString under:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3787
    "launch a browser for all implementors of aSelector in aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3788
     and its subclasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3789
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3790
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3791
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3792
        in:(aClass withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3793
        title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3794
                string:'Implementors of: %1 (in and below %2)' 
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3795
                with:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3796
                with:aClass name)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3797
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3798
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3799
     SystemBrowser browseImplementorsOf:#+ under:Integer
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3800
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3801
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3802
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3803
    "Created: / 9.12.1995 / 18:06:09 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3804
    "Modified: / 5.11.2001 / 17:30:15 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3805
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3806
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3807
browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3808
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3809
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3810
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3811
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3812
        in:(Smalltalk allClasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3813
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3814
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3815
     SystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3816
     NewSystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3817
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3818
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3819
    "Created: / 9.12.1995 / 18:01:18 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3820
    "Modified: / 5.11.2001 / 17:31:11 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3821
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3822
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3823
browseImplementorsOfAny:setOfSelectors in:aSetOfClasses
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3824
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3825
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3826
    |title|
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3827
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3828
    setOfSelectors size == 1 ifTrue:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3829
        title := self classResources 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3830
                string:'Implementors of %1' 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3831
                with:(setOfSelectors asOrderedCollection first).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3832
    ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3833
        setOfSelectors size == 2 ifTrue:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3834
            title := self classResources 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3835
                    string:'Implementors of %1 or %2' 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3836
                    with:(setOfSelectors asOrderedCollection first)
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3837
                    with:(setOfSelectors asOrderedCollection second).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3838
        ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3839
            title := self classResources string:'Implementors of some'.
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3840
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3841
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3842
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3843
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3844
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3845
        in:aSetOfClasses
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3846
        title:title
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3847
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3848
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3849
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3850
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3851
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3852
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3853
    "Created: / 10.7.1996 / 10:20:59 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3854
    "Modified: / 5.11.2001 / 17:30:57 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3855
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3856
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3857
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3858
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3859
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3860
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3861
    |list|
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3862
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3863
    list := self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3864
                findImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3865
                in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3866
                ignoreCase:ignoreCase.
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3867
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3868
    list size == 0 ifTrue:[
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3869
        self showNoneFound:title.
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3870
        ^ nil
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3871
    ].
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3872
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3873
    ^ self browseMethods:list asOrderedCollection title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3874
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3875
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3876
     SystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3877
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3878
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3879
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3880
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3881
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3882
     NewSystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3883
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3884
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3885
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3886
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3887
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3888
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3889
    "Modified: / 4.9.1995 / 17:33:39 / claus"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3890
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3891
    "Modified: / 5.11.2001 / 17:30:38 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3892
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3893
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3894
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3895
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3896
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3897
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3898
    ^ self
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3899
        browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3900
        in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3901
        ignoreCase:false
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3902
        title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3903
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3904
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3905
browseInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3906
    "launch a browser for all methods in aClass where the instVar named
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3907
     aString is referenced; if modsOnly is true, browse only methods where the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3908
     instvar is modified"
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3909
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3910
    ^ self browseRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3911
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3912
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3913
browseInstRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3914
    "launch a browser for all methods in aClass where the instVar named
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3915
     varName is referenced; if modsOnly is true, browse only methods where the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3916
     instvar is modified"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3917
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3918
    ^ self browseRefsTo:varName classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly title:title
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3919
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3920
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3921
browseInstRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3922
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3923
     where the instVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3924
     if modsOnly is true, browse only methods where the instvar is modified"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3925
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3926
    ^ self browseInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3927
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3928
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3929
browseReferendsOf:aGlobalName
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3930
    "launch a browser for all methods referencing a global
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3931
     named aGlobalName. The argument may be a symbol, a string or
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3932
     a matchPattern.
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3933
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3934
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3935
    ^ self browseReferendsOf:aGlobalName warnIfNone:true 
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3936
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3937
   "
14944
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3938
    UserPreferences current systemBrowserClass browseReferendsOf:#Transcript
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3939
    UserPreferences current systemBrowserClass browseReferendsOf:'Tr*'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3940
   "
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  3941
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3942
    "Modified: / 30.10.1997 / 23:45:52 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3943
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3944
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3945
browseReferendsOf:aGlobalName ifNone:actionIfNone
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3946
    "launch a browser for all methods referencing a global
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3947
     named aGlobalName.
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3948
    "
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3949
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3950
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3951
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3952
        title:(self classResources string:'Users of: %1' with:aGlobalName)
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3953
        ifNone:actionIfNone
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3954
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3955
    "Modified: / 31.10.1997 / 15:42:05 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3956
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3957
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3958
browseReferendsOf:aGlobalName in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3959
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3960
     named aGlobalName.
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3961
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3962
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3963
    ^ self browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:true 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3964
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3965
   "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3966
    Browser browseReferendsOf:#Transcript
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3967
   "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3968
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3969
    "Created: 10.7.1996 / 10:37:30 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3970
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3971
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3972
browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3973
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3974
     named aGlobalName.
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3975
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3976
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3977
    |globalsPlainName idx|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3978
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3979
    globalsPlainName := aGlobalName.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3980
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3981
        globalsPlainName := globalsPlainName copyFrom:idx+1
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3982
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3983
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3984
    ^ self browseForSymbol:aGlobalName
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3985
                        in:aSetOfClasses
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3986
                     title:(self classResources string:'Users of: %1' with:aGlobalName) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3987
                warnIfNone:doWarn
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3988
                 searchFor:globalsPlainName
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3989
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3990
    "Created: 10.7.1996 / 10:37:02 / cg"
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3991
    "Modified: 31.10.1996 / 14:56:38 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3992
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3993
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3994
browseReferendsOf:aGlobalName title:title ifNone:actionIfNone
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3995
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3996
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3997
     the search should be for a global named <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3998
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3999
    |searchBlock browser|
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4000
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4001
    searchBlock := self searchBlockForReferendsOf:aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4002
    browser := self 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4003
                browseMethodsWhere:searchBlock 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4004
                title:title 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4005
                ifNone:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4006
                    actionIfNone value. 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4007
                    ^ nil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4008
                ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4009
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  4010
    browser isNil ifTrue:[
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  4011
        actionIfNone value
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  4012
    ] ifFalse:[
9010
fa5c1fef4aef changed: #browseReferendsOf:title:ifNone:
Claus Gittinger <cg@exept.de>
parents: 9007
diff changeset
  4013
        browser autoSearchVariable:aGlobalName.
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  4014
    ].
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  4015
    ^ browser
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4016
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4017
    "
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4018
     Tools::NewSystemBrowser browseReferendsOf:'SortedCollection' title:'foo' ifNone:[ self halt ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  4019
    "
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4020
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4021
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4022
browseReferendsOf:aGlobalName title:title warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4023
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4024
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4025
     the search should be for a global named <namespace>::<aGlobalName>"
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4026
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4027
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4028
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4029
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4030
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4031
    ].
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4032
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4033
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4034
        browseReferendsOf:aGlobalName 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  4035
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  4036
        ifNone:b
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4037
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4038
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4039
browseReferendsOf:aGlobalName warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4040
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4041
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  4042
     the search should be for a global named <namespace>::<aGlobalName>"
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4043
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4044
    ^ self
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4045
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4046
        title:(self classResources string:'Users of: %1' with:aGlobalName)
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4047
        warnIfNone:doWarn
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4048
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4049
    "Modified: / 31.10.1997 / 15:42:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4050
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4051
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4052
browseReferendsOfUnboundGlobalsWithTitle:title ifNone:actionIfNone
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4053
    "launch a browser for all methods referencing an unbound global."
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4054
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4055
    |searchBlock browser|
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4056
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4057
    searchBlock := [:cls :mthd :sel | 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4058
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4059
                    |mSource globals potentialNames|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4060
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4061
                    "/ kludge: Lazy methods do not include symbols in the literal array - sigh
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4062
                    mthd isLazyMethod ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4063
                        mSource := mthd source.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4064
                        mSource notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4065
                            globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4066
                        ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4067
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4068
                        "/ try hard to avoid the usedGlobals - its expensive
6640
326360e94271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6581
diff changeset
  4069
                        potentialNames := mthd literals select:[:lit | lit isSymbol and:[lit size > 0 and:[lit isUppercaseFirst]]].
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4070
                        potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4071
                            potentialNames := potentialNames select:[:lit | (Smalltalk at:lit) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4072
                            potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4073
                                globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4074
                            ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4075
                        ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4076
                    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4077
                    globals notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4078
                        globals contains:[:aGlobalKey | (Smalltalk at:aGlobalKey asSymbol) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4079
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4080
                        false
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4081
                    ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4082
                  ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4083
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4084
    browser := self browseMethodsWhere:searchBlock title:title ifNone:[actionIfNone value. ^ nil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4085
    browser isNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4086
        actionIfNone value
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4087
    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4088
    ^ browser
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4089
!
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4090
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4091
browseReferendsOfUnboundGlobalsWithTitle:title warnIfNone:doWarn
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4092
    "launch a browser for all methods referencing an unbound global.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4093
    "
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4094
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4095
    |b|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4096
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4097
    doWarn ifTrue: [
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4098
        b := [self showNoneFound:title]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4099
    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4100
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4101
    ^ self
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4102
        browseReferendsOfUnboundGlobalsWithTitle:title 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4103
        ifNone:b
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4104
!
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4105
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4106
browseRefsTo:aString classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4107
    "launch a browser for all methods in aClass where the instVar/classVar named
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4108
     aString is referenced; if modsOnly is true, browse only methods where the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4109
     instvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4110
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4111
    |title|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4112
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4113
    modsOnly ifTrue:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4114
        title := 'Modifications of: %1'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4115
    ] ifFalse:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4116
        title := 'References to: %1 '
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4117
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4118
    ^ self 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4119
        browseRefsTo:aString 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4120
        classVars:classVars 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4121
        in:aCollectionOfClasses 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4122
        modificationsOnly:modsOnly 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4123
        title:(self classResources string:title with:aString)
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4124
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4125
    "Created: 9.12.1995 / 18:07:05 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4126
    "Modified: 9.12.1995 / 18:11:49 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4127
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4128
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4129
browseRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4130
    "launch a browser for all methods in aClass where the instVar/classVar named
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4131
     varName is referenced; if modsOnly is true, browse only methods where the
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4132
     instvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4133
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4134
    |filter browser pattern|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4135
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4136
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4137
    browser := self browseMethodsIn:aCollectionOfClasses inst:true class:classVars where:filter title:title.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4138
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4139
    browser notNil ifTrue:[
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4140
        modsOnly ifTrue:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4141
            pattern := varName , ' :='
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4142
        ] ifFalse:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4143
            pattern := varName
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4144
        ].
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4145
        browser autoSearch:pattern 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4146
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4147
    ^ browser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4148
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4149
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4150
browseSendersOf:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4151
    "launch a browser for all senders of aSelector"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4152
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4153
    ^ self browseAllCallsOn:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4154
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4155
    "
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4156
     SystemBrowser browseSendersOf:#+
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4157
     UserPreferences current systemBrowserClass browseSendersOf:#+
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4158
    "
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4159
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4160
    "Modified: / 10.7.1996 / 10:26:15 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4161
    "Created: / 13.11.2001 / 13:52:12 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4162
!
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4163
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4164
browseSuperCallsIn:aCollectionOfClasses title:title
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4165
    "launch a browser for all super sends in aCollectionOfClasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4166
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  4167
    |browser searchBlock|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4168
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4169
    searchBlock := [:class :method :s | 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4170
        |src parser|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4171
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4172
        src := method source.
15334
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4173
        (src notNil and:[ (src findString:'super') ~~ 0 ])  ifTrue:[
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4174
             parser := Parser 
2208
e077aa992f7a check for nil source in #allCallsOn: (for methods where src in not available)
Claus Gittinger <cg@exept.de>
parents: 1937
diff changeset
  4175
                        parseMethod:src 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4176
                        in:class 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4177
                        ignoreErrors:true 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4178
                        ignoreWarnings:true.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4179
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4180
            (parser notNil and:[parser ~~ #Error and:[parser usesSuper]])
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4181
        ] ifFalse:[
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4182
            false
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4183
        ]
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4184
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4185
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4186
    browser := self browseMethodsIn:aCollectionOfClasses
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4187
                              where:searchBlock
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4188
                              title:title.
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4189
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4190
    browser notNil ifTrue:[
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4191
        browser autoSearch:'super' 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4192
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4193
    ^ browser
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4194
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4195
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4196
     SystemBrowser
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4197
         browseSuperCallsIn:(Array with:SortedCollection)
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4198
                      title:'superSends in SortedCollection'
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4199
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4200
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4201
    "Created: / 23-11-1995 / 14:08:55 / cg"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4202
    "Modified: / 06-03-2007 / 14:00:12 / cg"
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4203
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4204
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4205
browseSuperCallsUnder:aClass
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4206
    "launch a browser for all supersends in aClass and subclasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4207
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4208
    ^ self browseSuperCallsIn:(aClass withAllSubclasses)
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4209
                        title:(self classResources string:'Supersends (in and below %1)' with:aClass name)
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4210
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4211
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4212
     SystemBrowser browseSuperCallsUnder:Number
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4213
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4214
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4215
    "Created: 23.11.1995 / 12:06:06 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4216
    "Modified: 9.12.1995 / 18:11:59 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4217
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4218
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4219
browseUsesOf:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4220
    |dict owners offsets
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4221
     sz  "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4222
     n   "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4223
     removeSet newDict|
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4224
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4225
    owners := ObjectMemory whoReferencesInstancesOf:aClass.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4226
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4227
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4228
     collect set of offsets in dict; key is class
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4229
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4230
    dict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4231
    owners do:[:someObject |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4232
        |cls create|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4233
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4234
        someObject isContext ifFalse:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4235
            "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4236
             someObject refers to an instance of aClass;
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4237
             find out, which instVar(s)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4238
            "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4239
            cls := someObject class.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4240
            cls ~~ Array ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4241
                n := cls instSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4242
                create := [|s| s := Set new. dict at:cls put:s. s].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4243
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4244
                1 to:n do:[:i |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4245
                    |ref|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4246
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4247
                    ref := someObject instVarAt:i.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4248
                    (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4249
                        offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4250
                        offsets add:i.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4251
                    ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4252
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4253
                cls isVariable ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4254
                    cls isPointers ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4255
                        | idx "{ Class: SmallInteger }" |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4256
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4257
                        sz := someObject basicSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4258
                        idx := 1.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4259
                        [idx <= sz] whileTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4260
                            |ref|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4261
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4262
                            ref := someObject basicAt:idx.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4263
                            (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4264
                                offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4265
                                offsets add:0.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4266
                                idx := sz
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4267
                            ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4268
                            idx := idx + 1
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4269
                        ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4270
                    ]        
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4271
                ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4272
            ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4273
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4274
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4275
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4276
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4277
     merge with superclass refs
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4278
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4279
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4280
        cls allSuperclasses do:[:aSuperclass |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4281
            |superSet|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4282
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4283
            superSet := dict at:aSuperclass ifAbsent:[].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4284
            superSet notNil ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4285
                superSet := dict at:aSuperclass.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4286
                removeSet := Set new.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4287
                set do:[:offset |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4288
                    (superSet includes:offset) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4289
                        removeSet add:offset
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4290
                    ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4291
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4292
                set removeAll:removeSet
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4293
            ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4294
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4295
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4296
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4297
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4298
     remove empty ones
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4299
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4300
    removeSet := Set new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4301
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4302
        set isEmpty ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4303
            removeSet add:cls
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4304
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4305
    ].
9334
ed9742f1a717 changed: #browseUsesOf:
Claus Gittinger <cg@exept.de>
parents: 9313
diff changeset
  4306
    dict removeAllKeys:removeSet.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4307
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4308
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4309
     replace the indices by real names
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4310
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4311
    newDict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4312
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4313
        |newSet names|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4314
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4315
        names := cls allInstVarNames.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4316
        newSet := set collect:[:index | 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4317
                index == 0 ifTrue:['*indexed*'] ifFalse:[names at:index].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4318
        ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4319
        newDict at:cls put:newSet
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4320
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4321
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4322
    newDict inspect
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4323
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4324
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4325
filterToSearchRefsTo:varName classVars:classVars access:accessType
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4326
    "return a searchblock for variable references (obsolete)"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4327
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4328
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4329
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4330
        instVars:(classVars not) 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4331
        classVars:classVars 
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4332
        globals:false
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4333
        poolVars:false 
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4334
        access:accessType
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4335
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4336
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4337
filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4338
    "return a searchblock for variable references"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4339
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4340
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4341
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4342
        classVars:classVars 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4343
        access:(modsOnly ifTrue:#write ifFalse:#readWrite)
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4344
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4345
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4346
filterToSearchRefsTo:varName instVars:doInstVars classVars:doClassVars globals:doGlobals access:accessType
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4347
    "return a searchblock for variable references"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4348
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4349
    ^ self
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4350
        filterToSearchRefsTo:varName instVars:doInstVars classVars:doClassVars globals:doGlobals 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4351
        poolVars:false access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4352
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4353
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4354
filterToSearchRefsTo:varName instVars:doInstVars classVars:doClassVars globals:doGlobals poolVars:doPoolVars access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4355
    "return a searchblock for variable references"
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4356
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4357
    |searchBlock needMatch baseVarName|
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4358
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4359
    needMatch := varName includesMatchCharacters.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4360
    (varName includes:$:) ifTrue:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4361
        baseVarName := varName copyFrom:(varName lastIndexOf:$:)+1
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4362
    ] ifFalse:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4363
        baseVarName := varName
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4364
    ].
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4365
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4366
    searchBlock := [:c :m :s |
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4367
        |src result parser vars instVars classVars poolVars globals|
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4368
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4369
        result := false.
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4370
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4371
        "/ JV Following code is bad. It assumes that method is a Smalltalk method.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4372
        "/ But it may not, it could be JavaScript method, Java method or whatever fancy language 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4373
        "/ method. Should be actually delegated to the method itself.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4374
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4375
        (m programmingLanguage isSmalltalk 
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4376
        or:[ m programmingLanguage isSTXJavaScript ]) ifTrue:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4377
            "/ For Smalltalk, use parser...
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4378
            src := m source.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4379
            src notNil ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4380
                needMatch ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4381
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4382
                     before doing a slow parse, quickly scan the
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4383
                     method's source for the variable's name ...
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4384
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4385
                    result := (src findString:baseVarName) ~~ 0.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4386
                ] ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4387
                    result := true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4388
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4389
                result ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4390
                    result := false.
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4391
                    parser := (m parserClass)
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4392
                                    parseMethod:src 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4393
                                    in:c 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4394
                                    ignoreErrors:true 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4395
                                    ignoreWarnings:true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4396
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4397
                    (parser notNil and:[parser ~~ #Error]) ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4398
                        vars := Set new.    
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4399
                        doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4400
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4401
                                instVars := parser readInstVars
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4402
                            ] ifFalse:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4403
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4404
                                    instVars := parser modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4405
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4406
                                    instVars := parser usedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4407
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4408
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4409
                            vars addAll:instVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4410
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4411
                        doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4412
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4413
                                classVars := parser readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4414
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4415
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4416
                                    classVars := parser modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4417
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4418
                                    classVars := parser usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4419
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4420
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4421
                            vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4422
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4423
                        doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4424
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4425
                                poolVars := parser readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4426
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4427
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4428
                                    poolVars := parser modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4429
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4430
                                    poolVars := parser usedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4431
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4432
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4433
                            vars addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4434
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4435
                        doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4436
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4437
                                globals := parser readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4438
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4439
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4440
                                    globals := parser modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4441
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4442
                                    globals := parser usedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4443
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4444
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4445
                            vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4446
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4447
                        vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4448
                            needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4449
                                result := vars contains:[:cv | (varName match:cv)]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4450
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4451
                                result := vars includes:varName
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4452
                            ]
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4453
                        ]
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4454
                    ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4455
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4456
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4457
        ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4458
            "/ For all other languages, ask method.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4459
            vars := Set new.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4460
            doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4461
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4462
                    instVars := m readInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4463
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4464
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4465
                        instVars := m modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4466
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4467
                        instVars := m usedInstVars
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4468
                    ]
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4469
                ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4470
                vars addAll:instVars.
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4471
            ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4472
            doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4473
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4474
                    classVars := m readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4475
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4476
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4477
                        classVars := m modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4478
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4479
                        classVars := m usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4480
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4481
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4482
                vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4483
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4484
            doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4485
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4486
                    poolVars := m readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4487
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4488
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4489
                        poolVars := m modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4490
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4491
                        poolVars := m usedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4492
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4493
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4494
                vars addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4495
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4496
            doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4497
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4498
                    globals := m readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4499
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4500
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4501
                        globals := m modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4502
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4503
                        globals := m usedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4504
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4505
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4506
                vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4507
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4508
            vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4509
                needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4510
                    result := vars contains:[:cv | (varName match:cv)]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4511
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4512
                    result := vars includes:varName
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4513
                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4514
            ]
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4515
        ].
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4516
        Processor yield.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4517
        result
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  4518
    ].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4519
    ^ searchBlock
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4520
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4521
    "Modified: / 06-09-2013 / 18:02:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4522
    "Modified: / 23-07-2017 / 13:47:40 / cg"
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4523
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4524
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4525
findAnyResourceIn:aCollectionOfClasses 
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4526
    "return a collection of all methods in aCollectionOfClasses containing any resource."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4527
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4528
    ^ self findMethodsIn:aCollectionOfClasses where:[:c :m :sel | m hasResource ].
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4529
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4530
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4531
     SystemBrowser findAnyResourceIn:(ApplicationModel withAllSubclasses)
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4532
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4533
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4534
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4535
findClassRefsTo:aString in:aCollectionOfClasses access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4536
    "return all methods in aCollectionOfClasses where the classVar named
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4537
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4538
     if modsOnly is true, browse only methods where the classvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4539
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4540
    ^ self findRefsTo:aString classVars:true in:aCollectionOfClasses access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4541
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4542
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4543
findClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4544
    "return all methods in aCollectionOfClasses where the classVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4545
     aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4546
     if modsOnly is true, browse only methods where the classvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4547
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4548
    ^ self findRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4549
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4550
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4551
findClassRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4552
    "return all methods in aClass where the classVar named
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4553
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4554
     if modsOnly is true, browse only methods where the classvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4555
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4556
    ^ self findRefsTo:aString classVars:true in:(Array with:aClass) access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4557
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4558
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4559
findClassRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4560
    "return all methods in aClass where the classVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4561
     aString is referenced; 
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4562
     if modsOnly is true, browse only methods where the classvar is modified"
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4563
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4564
    ^ self findRefsTo:aString classVars:true in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4565
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4566
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4567
findClassRefsTo:aString under:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4568
    "return all methods in aClass and subclasses
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4569
     where the classVar named aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4570
     if modsOnly is true, browse only methods where the classvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4571
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4572
    ^ self findClassRefsTo:aString in:(aClass withAllSubclasses) access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4573
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4574
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4575
findClassRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4576
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4577
     where the classVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4578
     if modsOnly is true, browse only methods where the classvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4579
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4580
    ^ self findClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4581
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4582
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4583
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4584
findCode:aCodeString in:aCollectionOfClasses isMethod:isMethod 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4585
    "return a collection of all methods in aCollectionOfClasses  
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4586
     containing a matching piece of code.
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4587
     This may be slow, since source-code has to be scanned."
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4588
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4589
    |searchBlock|
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4590
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4591
    searchBlock := self searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  4592
    searchBlock isNil ifTrue:[ ^ nil].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4593
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4594
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4595
    "Modified: / 02-05-2011 / 13:25:15 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4596
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4597
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4598
findCode:aCodeString inMethods:aCollectionOfMethods isMethod:isMethod 
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4599
    "return a collection of all methods in aCollectionOfMethods  
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4600
     containing a matching piece of code."
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4601
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4602
    |searchBlock|
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4603
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4604
    searchBlock := self searchBlockForCode:aCodeString in:(aCollectionOfMethods collect:[:each | each mclass]) isMethod:isMethod.
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4605
    searchBlock isNil ifTrue:[ ^ nil].
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4606
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4607
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4608
    "Modified: / 02-05-2011 / 13:25:39 / sr"
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4609
!
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4610
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4611
findExceptionHandlersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4612
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4613
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4614
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4615
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4616
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4617
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4618
    "Modified: / 11-05-2010 / 16:18:55 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4619
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4620
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4621
findExceptionHandlersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4622
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4623
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4624
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4625
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4626
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4627
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4628
    "Created: / 11-05-2010 / 16:20:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4629
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4630
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4631
findExceptionRaisersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4632
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4633
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4634
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4635
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4636
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4637
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4638
    "Modified: / 11-05-2010 / 16:18:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4639
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4640
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4641
findExceptionRaisersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4642
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4643
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4644
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4645
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4646
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4647
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4648
    "Created: / 11-05-2010 / 16:20:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4649
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4650
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4651
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4652
    "return a collection of all help-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4653
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4654
     This may be slow, since source-code has to be scanned."
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4655
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4656
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4657
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4658
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4659
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4660
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4661
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4662
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4663
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4664
    "return a collection of all help-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4665
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4666
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4667
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4668
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4669
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4670
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4671
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4672
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4673
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4674
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4675
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4676
findImplementors:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4677
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4678
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4679
     Return a collection of methods"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4680
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4681
    |lcSelector list compare testST testJava srchBlockST srchBlockJava collectionOfClasses|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4682
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4683
    list := IdentitySet new.
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4684
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4685
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4686
    (doMatch and:[aSelectorMatchString includesMatchCharacters]) ifTrue:[
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4687
        compare := [:sel :search | sel match:search].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4688
    ] ifFalse:[
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4689
        compare := [:sel :search | sel = search].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4690
    ].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4691
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4692
    ignoreCase == true ifTrue:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4693
        lcSelector := aSelectorMatchString asLowercase.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4694
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4695
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4696
        testJava := [:mthdSelector :aMethod | (compare value:lcSelector value:aMethod name asLowercase) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4697
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4698
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4699
        testJava := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:aMethod name) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4700
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4701
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4702
    srchBlockST := [:mthdSelector :mthd | (testST value:mthdSelector value:mthd) ifTrue:[ list add:mthd]].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4703
    srchBlockJava := [:mthdSelector :mthd | (testJava value:mthdSelector value:mthd) ifTrue:[ list add:mthd]].
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4704
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4705
    (collectionOfClasses := aCollectionOfClasses) isNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4706
        collectionOfClasses := Smalltalk allClasses
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4707
    ].    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4708
    collectionOfClasses do:[:aClass |
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4709
        |srchBlock|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4710
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4711
        aClass isObsolete ifFalse:[
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4712
            srchBlock := aClass isJavaClass 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4713
                            ifTrue:[ srchBlockJava ]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4714
                            ifFalse:[ srchBlockST ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4715
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4716
            aClass methodDictionary keysAndValuesDo:srchBlock.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4717
            aClass isMeta ifFalse:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4718
                aClass class methodDictionary keysAndValuesDo:srchBlock
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4719
            ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4720
        ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4721
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4722
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4723
    ^ list
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4724
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4725
    "
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4726
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4727
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4728
        in: { Number . Float . SmallInteger }
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4729
        ignoreCase: false
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4730
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4731
     Time millisecondsToRun:[    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4732
         SystemBrowser 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4733
            findImplementorsOf:#add:
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4734
            in: (Smalltalk allClasses)
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4735
            ignoreCase: false
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4736
     ]
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4737
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4738
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4739
    "Modified (format): / 22-03-2012 / 07:28:50 / cg"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4740
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4741
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4742
findImplementors:aSelectorMatchString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4743
    "search for all implementors of aSelector in
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4744
     the classes contained in aCollectionOfClasses and their metaclasses.
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4745
     Return a collection of methods"
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4746
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4747
    |list compare testST testJava lcSelector|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4748
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4749
    list := IdentitySet new.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4750
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4751
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4752
    doMatch ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4753
        compare := [:sel :search | sel match:search].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4754
    ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4755
        compare := [:sel :search | sel = search].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4756
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4757
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4758
    ignoreCase == true ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4759
        lcSelector := aSelectorMatchString asLowercase.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4760
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4761
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4762
        testJava := [:mthdSelector :aMethod | (compare value:lcSelector value:aMethod name asLowercase) ].
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4763
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4764
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4765
        testJava := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:aMethod name) ].
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4766
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4767
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4768
    aCollectionOfMethods do:[:eachMethod |
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4769
        |cls sel testBlock|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4770
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4771
        cls := eachMethod mclass.
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4772
        (cls isNil or:[cls isObsolete]) ifFalse:[
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4773
            cls isJavaClass ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4774
                testBlock := testJava
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4775
            ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4776
                testBlock := testST
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4777
            ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4778
            sel := eachMethod selector.    
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4779
            (testBlock value:sel value:eachMethod) ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4780
                list add:eachMethod
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4781
            ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4782
        ]
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4783
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4784
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4785
    ^ list
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4786
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4787
    "Modified: / 29-08-2006 / 14:33:42 / cg"
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4788
!
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4789
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4790
findImplementorsMatching:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4791
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4792
     the classes contained in aCollectionOfClasses and their metaclasses.
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4793
     Return a collection of methods"
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4794
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4795
    ^ self 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4796
        findImplementors:aSelectorMatchString 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4797
        in:aCollectionOfClasses 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4798
        ignoreCase:ignoreCase 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4799
        match:true
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4800
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4801
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4802
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4803
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4804
        in:{ Number . Float . SmallInteger }
16443
7ce9ab5ce5e2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16395
diff changeset
  4805
        ignoreCase:false
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4806
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4807
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4808
    "Modified (comment): / 22-03-2012 / 07:20:42 / cg"
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4809
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4810
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4811
findImplementorsMatchingAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4812
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4813
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4814
     Return a collection of methods.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4815
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4816
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4817
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4818
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4819
            self findImplementorsMatching:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4820
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4821
                 ignoreCase:ignoreCase.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4822
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4823
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4824
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4825
"/
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4826
"/    implementors := IdentitySet new.
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4827
"/    aCollectionOfSelectors do:[:eachSelector |
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4828
"/        implementors addAll:(self findImplementorsMatching:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4829
"/    ].
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4830
"/    ^ implementors
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4831
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4832
    "
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4833
     self
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4834
        findImplementorsMatchingAny:#( 'at*:' '*size')
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4835
        in:(Smalltalk allClasses) 
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4836
        ignoreCase:true
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4837
    "
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4838
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4839
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4840
findImplementorsOf:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4841
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4842
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4843
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4844
6480
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4845
    ^ self 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4846
        findImplementors:aSelectorMatchString 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4847
        in:aCollectionOfClasses 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4848
        ignoreCase:ignoreCase 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4849
        match:false
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4850
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4851
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4852
     SystemBrowser findImplementorsOf:#+
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4853
                                   in:(Array with:Number
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4854
                                             with:Float
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4855
                                             with:SmallInteger)
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4856
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4857
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4858
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4859
findImplementorsOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4860
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4861
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4862
     Return a collection of methods.
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4863
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4864
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4865
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4866
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4867
            self findImplementorsOf:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4868
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4869
                 ignoreCase:ignoreCase.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4870
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4871
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4872
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4873
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4874
"/    implementors := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4875
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4876
"/        implementors addAll:(self findImplementorsOf:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4877
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4878
"/    ^ implementors
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4879
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4880
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4881
findInstRefsTo:aString in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4882
    "return all methods in aCollectionOfClasses where the instVar named
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4883
     aString is referenced; 
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4884
     if modsOnly is true, browse only methods where the classvar is modified"
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4885
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4886
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4887
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4888
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4889
findInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4890
    "return all methods in aCollectionOfClasses where the instVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4891
     aString is referenced; if modsOnly is true, browse only methods where the
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4892
     instvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4893
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4894
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4895
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4896
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4897
findInstRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4898
    "return all methods in aClass where the instVar named
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4899
     aString is referenced; if modsOnly is true, browse only methods where the
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4900
     instvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4901
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4902
    ^ self findRefsTo:aString classVars:false in:(Array with:aClass) access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4903
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4904
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4905
findInstRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4906
    "return all methods in aClass where the instVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4907
     aString is referenced; if modsOnly is true, browse only methods where the
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4908
     instvar is modified"
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4909
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4910
    ^ self findRefsTo:aString classVars:false in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4911
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4912
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4913
findInstRefsTo:aString under:aClass access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4914
    "return all methods in aClass and subclasses
18705
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4915
     where the instVar named aString is referenced; 
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4916
     if modsOnly is true, browse only methods where the classvar is modified"
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4917
18705
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4918
    ^ self 
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4919
        findInstRefsTo:aString 
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4920
        in:(aClass withAllSubclasses) 
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4921
        access:accessType
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4922
dea38d56c6e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 18615
diff changeset
  4923
    "Modified (comment): / 20-03-2019 / 17:11:47 / Claus Gittinger"
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4924
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4925
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4926
findInstRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4927
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4928
     where the instVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4929
     if modsOnly is true, browse only methods where the instvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4930
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4931
    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4932
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4933
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4934
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4935
    "return a collection of all menu-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4936
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4937
     This may be slow, since source-code has to be scanned."
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4938
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4939
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4940
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4941
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4942
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4943
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4944
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4945
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4946
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4947
    "return a collection of all menu-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4948
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4949
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4950
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4951
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4952
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4953
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4954
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4955
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4956
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4957
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4958
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4959
findPoolVarRefsTo:aString inClass:aClass access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4960
    "return all methods in aClass where the pool variable named aString is referenced; 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4961
     if modsOnly is true, browse only methods where the classvar is modified"
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4962
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4963
    |filter|
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4964
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4965
    filter := self 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4966
                filterToSearchRefsTo:aString 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4967
                instVars:false classVars:false globals:false poolVars:true 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4968
                access:accessType.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4969
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4970
    ^ self findMethodsIn:(Array with:aClass) inst:true class:true where:filter.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4971
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4972
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4973
findRefsTo:varName classVars:classVars in:aCollectionOfClasses access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4974
    "return a list of all methods in aCollectionOfClasses where the instVar/classVar named
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4975
     varName is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4976
     if modsOnly is true, browse only methods where the instvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4977
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4978
    |filter|
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4979
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4980
    filter := self filterToSearchRefsTo:varName classVars:classVars access:accessType.
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4981
    ^ self findMethodsIn:aCollectionOfClasses inst:true class:classVars where:filter.
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4982
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4983
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4984
     self
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4985
        findRefsTo:'x'
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4986
        classVars:false
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4987
        in:(Array with:Point)
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4988
        modificationsOnly:true
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4989
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4990
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4991
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4992
findRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4993
    "return a list of all methods in aCollectionOfClasses where the instVar/classVar named
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4994
     varName is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4995
     if modsOnly is true, browse only methods where the instvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4996
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4997
    |filter|
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4998
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4999
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5000
    ^ self findMethodsIn:aCollectionOfClasses inst:true class:classVars where:filter.
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5001
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5002
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5003
     self
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5004
        findRefsTo:'x'
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5005
        classVars:false
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5006
        in:(Array with:Point)
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5007
        modificationsOnly:true
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5008
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5009
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  5010
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5011
findResource:aResourceSymbolOrCollectionOfSymbols in:aCollectionOfClasses 
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5012
    "return a collection of all methods in aCollectionOfClasses  
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5013
     containing a resource."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5014
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5015
    |searchBlock|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5016
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5017
    aResourceSymbolOrCollectionOfSymbols isSymbol ifTrue:[
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5018
        searchBlock := [:c :m :sel | |resources|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5019
                            (resources := m resources) size > 0
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5020
                            and:[resources includesKey:aResourceSymbolOrCollectionOfSymbols]
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5021
                       ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5022
    ] ifFalse:[
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5023
        searchBlock := [:c :m :sel | |resources|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5024
                            (resources := m resources) size > 0
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5025
                            and:[resources keys includesAny:aResourceSymbolOrCollectionOfSymbols]
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5026
                       ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5027
    ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5028
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5029
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5030
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5031
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5032
     SystemBrowser findResource:#image in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5033
     SystemBrowser findResource:#menu in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5034
     SystemBrowser findResource:#(menu programMenu) in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5035
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5036
!
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  5037
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5038
findResource:aStringOrEmpty match:doMatch ignoreCase:ignoreCase in:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5039
    "return a collection of all methods in aCollectionOfClasses containing a matching resource."
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5040
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5041
    |matchCheck lcSearchString|
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5042
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5043
    aStringOrEmpty isEmptyOrNil ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5044
        matchCheck := [:aResourceName | true ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5045
    ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5046
        doMatch ifTrue:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  5047
            matchCheck := [:aResourceName | aStringOrEmpty match:aResourceName caseSensitive:ignoreCase not]
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5048
        ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5049
            ignoreCase ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5050
                lcSearchString := aStringOrEmpty asLowercase.
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5051
                matchCheck := [:aResourceName | aResourceName asLowercase = lcSearchString]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5052
            ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5053
                matchCheck := [:aResourceName | aResourceName = aStringOrEmpty ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5054
            ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5055
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5056
    ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5057
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5058
    ^ self 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5059
        findMethodsIn:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5060
        where:[:c :m :sel | 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5061
            m hasResource
12073
d63b17e5c9c8 class: SystemBrowser
Stefan Vogel <sv@exept.de>
parents: 12056
diff changeset
  5062
            and:[m resources notNil and:[m resources keys contains:matchCheck]]
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5063
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5064
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5065
    "
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5066
     SystemBrowser findResource:'*debug*' match:true ignoreCase:true in:(GenericException withAllSubclasses)
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5067
    "
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5068
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5069
    "Created: / 06-07-2011 / 12:14:24 / cg"
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5070
!
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5071
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5072
findRespondersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5073
    "search for all classes which respond to all of the selectors in aCollectionOfSelectors.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5074
     Search within the classes contained in aCollectionOfClasses and their metaclasses.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5075
     This will skip over unloaded classes.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5076
     Return a collection of classes."
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5077
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5078
    ^ Smalltalk allClasses 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5079
        select:[:cls |
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5080
            cls isLoaded 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5081
            and:[ aCollectionOfSelectors conform:[:sel | cls canUnderstand:sel]]].
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5082
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5083
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5084
     to find classes which respond to both indexOf: and replaceFromIndex:toIndex:,
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5085
     use:
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5086
        SystemBrowser 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5087
            findRespondersOfAll:#( indexOf: removeFromIndex:toIndex: ) 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5088
            in:nil 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5089
            ignoreCase:false
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5090
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5091
!
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5092
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5093
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5094
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5095
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5096
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5097
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5098
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5099
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5100
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5101
     SystemBrowser findSendersOf:#+
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5102
                   in:(Array with:Number
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5103
                             with:Float
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5104
                             with:SmallInteger)
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5105
                   ignoreCase:false
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5106
    "
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5107
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5108
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5109
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5110
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5111
     the classes contained in aCollectionOfClasses and their metaclasses.
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5112
     Return a collection of methods"
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5113
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5114
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5115
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5116
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5117
     SystemBrowser findSendersOf:#+
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5118
                   in:(Array with:Number
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5119
                             with:Float
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5120
                             with:SmallInteger)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5121
                   ignoreCase:false
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5122
    "
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5123
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5124
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5125
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5126
    "search for all senders of aSelector in aCollectionOfMethods.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5127
     Return a collection of methods"
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5128
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5129
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5130
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5131
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase.
9313
44795fcbf414 changed: #findSendersOf:inMethods:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 9312
diff changeset
  5132
    searchBlock isNil ifTrue:[^ #() ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5133
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5134
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5135
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5136
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5137
    "search for all senders of aSelector in aCollectionOfMethods.
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5138
     Return a collection of methods"
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5139
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5140
    |searchBlock|
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5141
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5142
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
9312
71f84182390a changed: #findSendersOf:inMethods:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 9189
diff changeset
  5143
    searchBlock isNil ifTrue:[^ #() ].
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5144
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5145
!
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5146
17624
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5147
findSendersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5148
    "search for methods which send all selectors in aCollectionOfSelectors in
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5149
     the classes contained in aCollectionOfClasses and their metaclasses.
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5150
     Return a collection of methods."
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5151
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5152
    ^ (self allCallsOn:(aCollectionOfSelectors first) 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5153
                 in:aCollectionOfClasses 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5154
                 ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5155
                 match:false
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5156
    ) select:[:mthd |
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5157
        mthd messagesSent includesAll:aCollectionOfSelectors
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5158
    ].
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5159
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5160
    "
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5161
     SystemBrowser 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5162
        findSendersOfAll:#(#'+' #'-')
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5163
        in:(Smalltalk allClasses)
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5164
        ignoreCase:false  
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5165
    "
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5166
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5167
    "Created: / 24-08-2017 / 13:10:25 / cg"
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5168
!
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5169
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5170
findSendersOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5171
    "search for all senders of any selector in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5172
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5173
     Return a collection of methods.
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5174
     CAVEAT: searches multiple times (could be tuned a lot if heavily used)"
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5175
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5176
    |setOfSenders|
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5177
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5178
    setOfSenders := Set new.
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5179
    aCollectionOfSelectors do:[:eachSelector |
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5180
        setOfSenders addAll:(
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5181
            self allCallsOn:eachSelector in:aCollectionOfClasses 
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5182
                 ignoreCase:ignoreCase match:false).
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5183
    ].
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  5184
    ^ setOfSenders
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5185
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5186
"/    |allSenders|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5187
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5188
"/    allSenders := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5189
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5190
"/        allSenders addAll:(self allCallsOn:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase match:true)
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5191
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5192
"/    ^ allSenders
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5193
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5194
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5195
     SystemBrowser findSendersOfAny:#(#'+' #'-')
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5196
                   in:(Array with:Number
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5197
                             with:Float
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5198
                             with:SmallInteger)
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5199
                   ignoreCase:false  
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5200
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5201
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5202
19026
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5203
findSendersUsingReturnValueOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5204
    "search for all senders of aSelector in
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5205
     the classes contained in aCollectionOfClasses and their metaclasses.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5206
     Return a collection of methods"
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5207
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5208
    ^ self allCallsUsingReturnValueOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5209
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5210
    "
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5211
     SystemBrowser findSendersUsingReturnValueOf:#+
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5212
                   in:(Array with:Number
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5213
                             with:Float
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5214
                             with:SmallInteger)
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5215
                   ignoreCase:false
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5216
    "
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5217
!
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5218
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5219
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5220
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5221
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5222
     This may be slow, since source-code has to be scanned."
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5223
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5224
    self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5225
        findSpecMethodsFor:specSymbol 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5226
        withString:aString 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5227
        in:aCollectionOfClasses 
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5228
        ignoreCase:ignoreCase match:true
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5229
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5230
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5231
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5232
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5233
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5234
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5235
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5236
    |searchBlock innerSearchBlock|
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5237
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5238
    innerSearchBlock := self searchBlockForString:aString ignoreCase:ignoreCase match:doMatch.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5239
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5240
    searchBlock := [:c :m :sel | 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5241
                            |resources| 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5242
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5243
                            ((resources := m resources) size > 0
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5244
                              and:[resources includesKey:specSymbol]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5245
                            ) ifTrue:[
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5246
                                innerSearchBlock value:c value:m value:sel
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5247
                            ]
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5248
                       ].
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5249
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5250
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5251
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5252
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5253
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5254
    "return a collection of all methods in aCollectionOfClasses  
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5255
     containing a string in their source.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5256
     This may be slow, since source-code has to be scanned."
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5257
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5258
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5259
        findString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5260
        in:aCollectionOfClasses
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5261
        ignoreCase:ignoreCase match:true fullWordsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5262
        resourceMethodsOnly:false
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5263
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5264
    "
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5265
     SystemBrowser findString:'should' in:(Array with:Object) ignoreCase:false
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5266
    "
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5267
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5268
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5269
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5270
    "return a collection of all methods in aCollectionOfClasses  
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5271
     containing a string in their source.
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5272
     This may be slow, since source-code has to be scanned."
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5273
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5274
    ^ self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5275
        findString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5276
        in:aCollectionOfClasses 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5277
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5278
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5279
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5280
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5281
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5282
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5283
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5284
        ignoreCase:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5285
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5286
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5287
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5288
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5289
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5290
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5291
     This may be slow, since source-code has to be scanned."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5292
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5293
    ^ self
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5294
        findString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5295
        in:aCollectionOfClasses 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5296
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5297
        resourceMethodsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5298
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5299
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5300
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5301
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5302
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5303
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5304
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5305
    "return a collection of all methods in aCollectionOfClasses  
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5306
     containing a string in their source.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5307
     This may be slow, since source-code has to be scanned."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5308
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5309
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5310
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5311
    searchBlock := 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5312
        self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5313
            searchBlockForString:aString 
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5314
            ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5315
            resourceMethodsOnly:resourceMethodsOnly.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5316
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5317
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5318
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5319
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5320
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5321
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5322
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5323
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5324
    "return a collection of all methods in aCollectionOfClasses  
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5325
     containing a string in their source.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5326
     This may be slow, since source-code has to be scanned."
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5327
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5328
    ^ self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5329
        findString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5330
        inMethods:aCollectionOfMethods 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5331
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5332
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5333
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5334
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5335
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5336
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5337
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5338
     This may be slow, since source-code has to be scanned."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5339
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5340
    ^ self
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5341
        findString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5342
        inMethods:aCollectionOfMethods 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5343
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5344
        resourceMethodsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5345
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5346
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5347
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5348
    "return a collection of all methods in aCollectionOfClasses  
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5349
     containing a string in their source.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5350
     This may be slow, since source-code has to be scanned."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5351
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5352
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5353
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5354
    searchBlock := self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5355
                    searchBlockForString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5356
                    ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5357
                    resourceMethodsOnly:resourceMethodsOnly.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5358
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5359
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5360
18896
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5361
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch resourceMethodsOnly:resourceMethodsOnly
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5362
    "return a collection of all methods in aCollectionOfClasses  
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5363
     containing a string in their source.
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5364
     This may be slow, since source-code has to be scanned."
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5365
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5366
    ^ self
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5367
        findString:aString 
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5368
        inMethods:aCollectionOfMethods 
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5369
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false 
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5370
        resourceMethodsOnly:resourceMethodsOnly
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5371
!
4c5933261741 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18890
diff changeset
  5372
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5373
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5374
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5375
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5376
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5377
    ^ self 
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5378
        findStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5379
        in:aCollectionOfClasses 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5380
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5381
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5382
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5383
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5384
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5385
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5386
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5387
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5388
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5389
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5390
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5391
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5392
    ^ self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5393
        findStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5394
        in:aCollectionOfClasses 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5395
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5396
        resourceMethodsOnly:false.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5397
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5398
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5399
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5400
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5401
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5402
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5403
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5404
    "return a collection of all methods in aCollectionOfClasses  
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5405
     containing a string in any of their string-literals."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5406
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5407
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5408
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5409
    searchBlock := self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5410
                    searchBlockForStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5411
                    ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5412
                    resourceMethodsOnly:resourceMethodsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5413
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5414
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5415
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5416
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5417
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5418
!
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5419
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5420
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5421
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5422
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5423
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5424
    ^ self
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5425
        findStringLiteral:aString inMethods:aCollectionOfMethods
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5426
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5427
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5428
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5429
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5430
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5431
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5432
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5433
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5434
    ^ self
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5435
        findStringLiteral:aString inMethods:aCollectionOfMethods 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5436
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5437
        resourceMethodsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5438
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5439
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5440
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5441
    "return a collection of all methods in aCollectionOfClasses  
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5442
     containing a string in any of their string-literals."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5443
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5444
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5445
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5446
    searchBlock := self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5447
                    searchBlockForStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5448
                    ignoreCase:ignoreCase 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5449
                    match:doMatch 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5450
                    fullWordsOnly:fullWordsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5451
                    resourceMethodsOnly:resourceMethodsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5452
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5453
!
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5454
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5455
findUsingParseTreeSearcher:searcher in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5456
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5457
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5458
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5459
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5460
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5461
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5462
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5463
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5464
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5465
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5466
    "Created: / 11-05-2010 / 16:18:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5467
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5468
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5469
findUsingParseTreeSearcher:searcher inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5470
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5471
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5472
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5473
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5474
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5475
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5476
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5477
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5478
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5479
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5480
    "Created: / 11-05-2010 / 16:20:12 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5481
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5482
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5483
resourceMethodSearchBlockFor:aStringSearchBlock
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5484
    ^ [:c :m :sel | 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5485
           |resources| 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5486
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5487
           (m hasAnyResource:Method resourceTypes) ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5488
               aStringSearchBlock value:c value:m value:sel
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5489
           ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5490
               false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5491
           ]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5492
      ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5493
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  5494
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5495
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5496
    ^ self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:true
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5497
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5498
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5499
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatchArg
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5500
    "return an optimized search block for the senders search.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5501
     Because this highly affects the speed of the senders-search in the browser,
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5502
     specialized blocks are returned, depending on whether a selector-match or casesensitive
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5503
     search is wanted 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5504
     (these operations are executed a zillion times in an inner loop,
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5505
      therefore, the speedup is noticable)"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5506
     
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5507
    |doMatch sel quickSearch idx|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5508
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5509
    doMatch := doMatchArg.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5510
    (doMatch and:[aSelectorString = '*']) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5511
        "a trivial block, which matches everything"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5512
        ^ [:class :method :s | true].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5513
    ].    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5514
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5515
    aSelectorString includesMatchCharacters ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5516
        doMatch := false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5517
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5518
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5519
    (doMatch or:[ignoreCase]) ifTrue:[
8685
b39dc53c40ae dont be too lazy in senders-search (do not return all accesses to
Claus Gittinger <cg@exept.de>
parents: 8678
diff changeset
  5520
        "/ a matchString or ignoreCase - need string matching procedure
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5521
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5522
        quickSearch := aSelectorString.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5523
        (quickSearch startsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5524
            quickSearch := quickSearch copyButFirst
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5525
        ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5526
        (quickSearch endsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5527
            quickSearch := quickSearch copyButLast
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5528
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5529
        
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5530
        "/ for keyword selector searches, only look for the first KW-part in the quicksearch
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5531
        "/ for matches, only look for substrings up to the first match character
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5532
        (idx := quickSearch indexOfAny:'*#[:') ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5533
            quickSearch := quickSearch copyTo:idx-1.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5534
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5535
        
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5536
        (ignoreCase and:[quickSearch includesMatchCharacters not]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5537
            doMatch ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5538
                ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5539
                    |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5540
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5541
                    inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5542
                    method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5543
                    method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5544
                        src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5545
                        (src notNil and:[src includesString:aSelectorString caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5546
                            method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5547
                        ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5548
                            skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5549
                        ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5550
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5551
                    skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5552
                        inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5553
                            (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5554
                                literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5555
                                    (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5556
                                    and:[(aLiteral sameAs:aSelectorString)]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5557
                                ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5558
                    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5559
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5560
                    inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5561
                    and:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5562
                        method messagesSent contains:[:msg | msg sameAs:aSelectorString ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5563
                    ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5564
               ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5565
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5566
            
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5567
            ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5568
                |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5569
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5570
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5571
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5572
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5573
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5574
                    (src notNil and:[src includesString:quickSearch caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5575
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5576
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5577
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5578
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5579
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5580
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5581
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5582
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5583
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5584
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5585
                                and:[(aLiteral includesString:quickSearch caseSensitive:false)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5586
                                and:[(aSelectorString match:aLiteral caseSensitive:false)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5587
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5588
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5589
      
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5590
                inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5591
                and:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5592
                    method messagesSent 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5593
                        contains:[:sel | aSelectorString match:aSelectorString caseSensitive:false]
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5594
                ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5595
           ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5596
        ].
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5597
        
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5598
        (ignoreCase or:[quickSearch includesMatchCharacters]) ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5599
            ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5600
                |method src inLiterals skip|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5601
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5602
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5603
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5604
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5605
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5606
                    (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5607
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5608
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5609
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5610
                    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5611
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5612
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5613
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5614
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5615
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5616
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5617
                                and:[(aLiteral includesString:quickSearch)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5618
                                and:[(aSelectorString match:aLiteral)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5619
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5620
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5621
                inLiterals and:[ method messagesSent includes:aSelectorString]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5622
           ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5623
        ]. 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5624
        ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5625
            |method src inLiterals skip|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5626
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5627
            method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5628
            "/ expensive search
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5629
            inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5630
            method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5631
                src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5632
                (src notNil and:[src includesMatchString:aSelectorString]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5633
                    method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5634
                ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5635
                    skip := true.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5636
                ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5637
            ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5638
            skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5639
                inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5640
                    (method literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5641
                        (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5642
                        and:[ aSelectorString match:aLiteral asLowercase caseSensitive:ignoreCase not]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5643
                    ] ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5644
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5645
            inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5646
            and:[ 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5647
                method messagesSent 
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5648
                    contains:[:anySelector | 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5649
                        aSelectorString match:anySelector caseSensitive:ignoreCase not
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5650
                    ] 
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5651
            ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5652
       ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5653
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5654
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5655
    "/ no matchString and not ignoring case - can do it much faster
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5656
    sel := aSelectorString asSymbolIfInterned.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5657
    sel isNil ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5658
        ^ nil     "/ none
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5659
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5660
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5661
    quickSearch := sel.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5662
    "/ for keyword selector searches, only look for the first KW-part in the quicksearch
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5663
    (idx := quickSearch indexOf:$:) ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5664
        quickSearch := quickSearch copyTo:idx-1.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5665
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5666
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5667
    ^ [:class :methodArg :s |
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5668
        |method src|
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5669
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5670
        method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5671
        method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5672
            src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5673
            (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5674
                method makeRealMethod.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5675
                method referencesLiteral: "sends:" sel.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5676
            ] ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5677
                false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5678
            ]
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5679
        ] ifFalse:[
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5680
            method sendsSelector:sel
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5681
        ]
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5682
    ].
10416
82d17ccb68ad changed: #searchBlockForAllCallsOn:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 10386
diff changeset
  5683
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5684
    "Modified: / 05-02-2017 / 01:25:14 / cg"
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5685
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5686
19026
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5687
searchBlockForAllCallsUsingReturnValueOn:aSelectorOrSelectorString ignoreCase:ignoreCase match:doMatchArg
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5688
    "return an optimized search block for the senders which use the return value search."
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5689
     
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5690
    |sel senderSearchBlock searchBlock matcher|
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5691
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5692
    sel := aSelectorOrSelectorString asSymbolIfInterned.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5693
    sel isNil ifTrue:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5694
        Transcript showCR:'no such symbol - no senders, obviously'.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5695
        ^ [:class :method :s | false].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5696
    ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5697
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5698
    senderSearchBlock := self searchBlockForAllCallsOn:sel ignoreCase:ignoreCase match:doMatchArg.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5699
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5700
    matcher := ParseTreeSearcher isUsingValueFromMessage:sel.
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5701
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5702
    "/ now wrap it
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5703
    searchBlock := 
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5704
        [:class :method :s |
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5705
            (senderSearchBlock value:class value:method value:s) 
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5706
            and:[
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5707
                ParseTreeSearcher matchMethod:method with:matcher
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5708
            ]
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5709
        ].
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5710
    ^ searchBlock
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5711
!
7325161dbede #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18982
diff changeset
  5712
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5713
searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5714
    "return a block to search for a piece of code.
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5715
     intelligent search: because parsing and the parseTree-match is a relatively
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5716
     expensive operation, we try hard to reduce the amount of searched methods by:
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5717
        - extracting sent messages from the pattern, and limiting the search to
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5718
          methods which also send all those messages,
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5719
        - extracting accessed globals from the pattern, and limiting the search to
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5720
          methods which also refer to those globals"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5721
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5722
    |errAction searchTree searcher globalVariablesUsed usedSymbols usedStrings
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5723
     sentMessages searchBlock foundMatch numMethodArgs methodSelector nameSpacesForGlobals|
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5724
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5725
"/self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5726
"/rule := ParseTreeLintRule 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5727
"/    createParseTreeRule: (Array with: aCodeString)
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5728
"/    method: isMethod
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5729
"/    name: 'Search for: ' , aCodeString.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5730
"/self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5731
"/
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5732
"/    searchBlock := [:c :m :sel | 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5733
"/        rslt := SmalllintChecker
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5734
"/            runRule:rule
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5735
"/            onEnvironment: (ClassEnvironment onEnvironment:(BrowserEnvironment new) classes:(Array with:c)).
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5736
"/        
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5737
"/        self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5738
"/    ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5739
"/^ searchBlock.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5740
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5741
    errAction := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5742
        [:errMsg :pos | 
18882
78328ddb6f7b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18869
diff changeset
  5743
            Dialog warn:'Error during pattern parse: %1 (position %2)'
78328ddb6f7b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18869
diff changeset
  5744
                   with:errMsg with:pos.
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5745
           ^ nil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5746
        ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5747
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5748
    isMethod ifTrue:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5749
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5750
                    parseRewriteMethod:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5751
                    onError: errAction.
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5752
        numMethodArgs := searchTree arguments size.
18900
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5753
        (searchTree selectorParts contains:[:part | part isPatternVariable]) ifFalse:[
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5754
            methodSelector := searchTree selector.
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5755
        ].    
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5756
    ] ifFalse:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5757
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5758
                    parseRewriteExpression:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5759
                    onError: errAction.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5760
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5761
    
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5762
    "/ extract messages sent by the pattern
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5763
    Error handle:[:ex |
12837
80c40ce2cd56 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12831
diff changeset
  5764
        self halt:'check this, please'.
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5765
    ] do:[
6549
cd47faed29f6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6546
diff changeset
  5766
        sentMessages := searchTree sentMessages.         
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5767
    ].
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5768
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5769
    nameSpacesForGlobals := Set with:Smalltalk.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5770
    aCollectionOfClasses do:[:eachClass |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5771
        nameSpacesForGlobals add:eachClass topNameSpace
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5772
    ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5773
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5774
    "/ extract globals used by the pattern
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5775
    globalVariablesUsed := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5776
    searchTree referencedVariables do:[:node |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5777
        |nm ns alternatives|
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5778
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5779
        node isPatternNode ifFalse:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5780
            nm := node name.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5781
            ns := nameSpacesForGlobals detect:[:ns | ns includesKey: nm asSymbol] ifNone:nil.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5782
            ns notNil ifTrue:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5783
                alternatives := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5784
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5785
                ('Smalltalk::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: ('Smalltalk::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5786
                (ns name,'::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: (ns name,'::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5787
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5788
                globalVariablesUsed add:alternatives
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5789
            ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5790
        ]
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5791
    ].
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5792
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5793
    "/ sorry: 
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5794
    "/      cannot use literals to speedup the search, because stc does not store
12056
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5795
    "/      constants in the literal-array. However, we can do a string search on
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5796
    "/      them, to avoid parsing.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5797
    usedSymbols := searchTree usedSymbols.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5798
    usedStrings := searchTree usedLiterals select:[:lit | lit isString].
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5799
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5800
    searcher := ParseTreeSearcher new.
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5801
    isMethod ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5802
        searcher 
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5803
            matchesMethod:aCodeString
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5804
            do:[:aNode :answer | foundMatch := true].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5805
    ] ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5806
        searcher 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5807
            matchesTree:searchTree
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5808
            do:[:aNode :answer | foundMatch := true].
6303
47c12063b000 Fix BC-Compile error
Stefan Vogel <sv@exept.de>
parents: 6184
diff changeset
  5809
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5810
    searcher computeQuickSearchStrings.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5811
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5812
    searchBlock := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5813
        [:c :m :sel | 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5814
            |isSTCCompiled allSelectorsInLiteralArray allMessagesSent 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5815
             allGlobalsReferenced allUsedSymbolsInLiteralArray allStringsInLiteralArray
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5816
             allSent src rslt parseTree
18900
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5817
             literalsInMethod skipMethod|       
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5818
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5819
            foundMatch := false.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5820
18900
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5821
            "/ can speedup the search, 
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5822
            "/ by filtering for number of message-args or method selector first...
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5823
            skipMethod := false.
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5824
            isMethod ifTrue:[ 
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5825
                (numMethodArgs notNil and:[ numMethodArgs ~= m numArgs ]) ifTrue:[ skipMethod := true ].
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5826
                (methodSelector notNil and:[ methodSelector ~= sel ]) ifTrue:[ skipMethod := true ].
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5827
            ].  
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5828
            skipMethod ifFalse:[
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5829
                m isLazyMethod ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5830
                    src := m source.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5831
                    src notNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5832
                        m makeRealMethod.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5833
                    ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5834
                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5835
                "/ can speedup the search, by quickly filtering for sent messages...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5836
                literalsInMethod := m literals.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5837
                allSelectorsInLiteralArray := sentMessages isEmptyOrNil or:[ literalsInMethod includesAll:sentMessages ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5838
                allSelectorsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5839
                    "/ and used symbols/globals first...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5840
                    allUsedSymbolsInLiteralArray := usedSymbols isEmptyOrNil or:[ literalsInMethod includesAll:usedSymbols ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5841
                    allUsedSymbolsInLiteralArray ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5842
                        "/ if ANY string is in match, ANY string must be in method (not true, but I am lazy)
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5843
                        "/ that does not work for stc compiled code, because it does not put strings into the literal array
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5844
                        isSTCCompiled := m byteCode isNil.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5845
                        isSTCCompiled ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5846
                            allStringsInLiteralArray := true.   "/ stc-compiled: don't know    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5847
                        ] ifFalse:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5848
                            allStringsInLiteralArray := usedStrings isEmptyOrNil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5849
                                                        or:[ literalsInMethod includesAll:usedStrings "literalsInMethod contains:[:lit | lit isString]" ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5850
                        ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5851
                        allStringsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5852
                            allGlobalsReferenced := globalVariablesUsed conform:[:varNames | varNames contains:[:varName | m referencesGlobal:varName]].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5853
                            allGlobalsReferenced ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5854
                                allMessagesSent := sentMessages isEmptyOrNil 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5855
                                                   or:[ m messagesSent includesAll:sentMessages ].
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5856
                                allMessagesSent ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5857
                                    src := m source.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5858
                                    src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  5859
                                        ('Browser [info]: no source for ' , m whoString "printString") infoPrintCR.
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5860
                                    ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5861
                                        isSTCCompiled ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5862
                                            usedStrings notEmptyOrNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5863
                                                "/ now that we have the source, scan the source for the literal strings,
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5864
                                                "/ before doing a slow parse
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5865
                                                allStringsInLiteralArray := usedStrings conform:[:eachString | src includesString:eachString].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5866
                                            ]
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5867
                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5868
                                        allStringsInLiteralArray ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5869
                                            (searcher canQuicklyReject:src) ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5870
                                                "/ Transcript show:'qReject: '; showCR:m whoString.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5871
                                            ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5872
                                                "/ the rest is done by the slower RB-match process...
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5873
                                                parseTree := 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5874
                                                    RBParser 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5875
                                                        parseSearchMethod:src 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5876
                                                        onError: [:str :pos | 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5877
                                                            "/ self halt.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5878
                                                            Transcript show:'Error during search in '; showCR:m. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5879
                                                            Transcript showCR:str. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5880
                                                            Transcript showCR:pos. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5881
                                                            nil
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5882
                                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5883
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5884
                                                parseTree notNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5885
                                                    searcher executeTree:parseTree.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5886
                                                    "/ notice: searcher sets foundMatch !!
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5887
                                                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5888
                                            ].
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5889
                                        ].
5251
847d633792ce tuned code search if global vars are involved
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
  5890
                                    ]
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5891
                                ]
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5892
                            ]
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5893
                        ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5894
                    ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5895
                ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5896
            ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5897
            foundMatch.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5898
       ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5899
    ^ searchBlock.
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5900
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5901
    "Created: / 02-05-2011 / 13:25:01 / sr"
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5902
    "Modified: / 20-07-2012 / 19:07:36 / cg"
18900
8568425e77d1 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 18896
diff changeset
  5903
    "Modified: / 15-07-2019 / 15:27:48 / Claus Gittinger"
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5904
!
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5905
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5906
searchBlockForCode:aCodeString isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5907
    "return a block to search for a piece of code (intelligent search)."
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5908
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5909
    ^ self searchBlockForCode:aCodeString in:#() isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5910
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5911
    "Modified: / 02-05-2011 / 13:26:18 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5912
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5913
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5914
searchBlockForParseTreeSearcher:searcher isMethod:isMethod
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5915
    "return a block to search for a piece of code (intelligent search)."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5916
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5917
    |errAction searchBlock foundMatch|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5918
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5919
    errAction := [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5920
                    Dialog warn:'Error during parse: ' , str , ' (position ' , pos printString , ')'.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5921
                    ^ nil
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5922
                 ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5923
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5924
    searchBlock := [:c :m :sel | 
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5925
                        |src parseTree|       
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5926
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5927
                        foundMatch := false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5928
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5929
                        m isLazyMethod ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5930
                            src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5931
                            src notNil ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5932
                                m makeRealMethod.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5933
                            ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5934
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5935
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5936
                        src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5937
                        src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  5938
                            ('Browser [info]: no source for ' , m whoString "printString") infoPrintCR.
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5939
                        ] ifFalse:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5940
                            parseTree := RBParser 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5941
                                            parseSearchMethod:src 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5942
                                            onError: [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5943
                                                Transcript show:'Error in '; showCR:m. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5944
                                                Transcript showCR:str. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5945
                                                Transcript showCR:pos. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5946
                                                nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5947
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5948
                            parseTree notNil ifTrue:[
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5949
                                foundMatch := searcher executeTree:parseTree initialAnswer:false.
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5950
                            ]
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5951
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5952
                        foundMatch.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5953
                   ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5954
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5955
    ^ searchBlock.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5956
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5957
    "Created: / 11-05-2010 / 16:14:25 / cg"
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5958
    "Modified: / 11-05-2010 / 22:05:09 / cg"
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5959
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5960
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5961
searchBlockForReferendsOf:aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5962
    "return a block which searches for all methods which reference a global named aGlobalName,
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5963
     which may be a matchpattern.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5964
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5965
     the name should be <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5966
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  5967
    |globalsPlainName idx sym1 sym2|
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5968
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5969
    globalsPlainName := aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5970
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5971
        globalsPlainName := globalsPlainName copyFrom:idx+1.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5972
        (globalsPlainName size == 0 or:[globalsPlainName = '*']) ifTrue:[
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5973
            globalsPlainName := aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5974
        ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5975
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5976
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5977
    "/ matchingGlobalNames := OrderedCollection new.
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5978
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5979
    aGlobalName includesMatchCharacters ifFalse:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5980
        sym1 := aGlobalName asSymbolIfInterned. 
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5981
        sym2 := globalsPlainName asSymbolIfInterned.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5982
        (sym1 isNil and:[ sym2 isNil ]) ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5983
            ^ [:cls :mthd :sel | false ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5984
        ].
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5985
        "/ if any is nil, search for the same
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5986
        sym1 := sym1 ? sym2.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5987
        sym2 := sym2 ? sym1.
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5988
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5989
        ^ [:cls :mthd :sel |
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5990
            |mSource ok m usedGlobals|
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5991
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5992
            ok := false.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5993
            "/ kludge: Lazy methods do not include symbols in the literal array - sigh
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5994
            mthd isLazyMethod ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5995
                mSource := mthd source.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5996
                (mSource notNil) ifTrue:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5997
                    (mSource includesString:(sym2)) ifTrue:[
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5998
                        usedGlobals := mthd usedGlobals.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5999
                        (usedGlobals includes:sym1) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6000
                            ok := true
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6001
                        ] ifFalse:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  6002
                            (sym1 ~= sym2 and:[usedGlobals includes:sym2]) ifTrue:[
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6003
                                ok := true
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6004
                            ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6005
                        ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6006
                    ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6007
                ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6008
            ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  6009
                m := mthd originalMethodIfWrapped.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  6010
                ((m refersToLiteral:sym1) or:[ sym1 ~= sym2 and:[m refersToLiteral:sym2] ]) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6011
                    usedGlobals := m usedGlobals.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  6012
                    ok := (usedGlobals includes:sym1) or:[ sym1 ~= sym2 and:[usedGlobals includes:sym2] ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6013
                ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6014
            ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6015
            ok
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6016
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6017
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6018
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6019
    ^ [:cls :mthd :sel | 
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6020
        |mSource usedGlobals global m|
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6021
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6022
        "/ kludge: Lazy methods do not include symbols in the literal array - sigh
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6023
        mthd isLazyMethod ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6024
            mSource := mthd source.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6025
            mSource notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6026
                usedGlobals := mthd usedGlobals
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6027
            ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6028
        ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  6029
            m := mthd originalMethodIfWrapped.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6030
            (m literals contains:[:lit | (aGlobalName match:lit) or:[globalsPlainName match:lit]]) ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6031
                usedGlobals := m usedGlobals
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6032
            ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6033
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6034
        usedGlobals notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6035
            global := usedGlobals detect:[:lit | aGlobalName match:lit] ifNone:nil.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6036
            global isNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6037
                global := usedGlobals detect:[:lit | globalsPlainName match:lit] ifNone:nil.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6038
            ].
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6039
"/            global notNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6040
"/                matchingGlobalNames add:global.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6041
"/            ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6042
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6043
        global notNil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6044
    ].
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  6045
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  6046
    "Modified: / 24-07-2011 / 09:50:30 / cg"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6047
!
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  6048
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6049
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  6050
    "return a block to search for a string."
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  6051
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6052
    ^ self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6053
        searchBlockForString:aString 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6054
        ignoreCase:ignoreCase 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6055
        match:doMatchArg 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6056
        fullWordsOnly:false
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6057
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6058
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6059
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6060
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6061
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6062
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6063
        ignoreCase:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6064
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6065
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6066
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6067
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6068
    "return a block to search for a string."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6069
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6070
    ^ self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6071
        searchBlockForString:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6072
        ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6073
        resourceMethodsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6074
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6075
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6076
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6077
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6078
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6079
    "Modified: / 05-06-2019 / 17:02:24 / Claus Gittinger"
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6080
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6081
19234
2c98b42c954f #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  6082
searchBlockForString:aStringArg ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6083
    "return a block to search for a string."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6084
19234
2c98b42c954f #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  6085
    |aString checkBlock lineCheckBlock pattern doMatch
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6086
     quickCheckString firstMatchIndex lastMatchIndex stringSearchBlock
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6087
     caseSensitive|
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6088
19234
2c98b42c954f #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  6089
    aString := aStringArg asSingleByteStringIfPossible.
2c98b42c954f #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  6090
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6091
    caseSensitive := ignoreCase not.
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6092
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6093
    doMatch := doMatchArg.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6094
    aString includesMatchCharacters ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6095
        doMatch := false.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6096
    ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6097
    doMatch ifTrue:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6098
        "a matchString"
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6099
        pattern := aString.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6100
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6101
        firstMatchIndex := aString indexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6102
        lastMatchIndex := aString lastIndexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6103
        "/ which is longer - left or right part
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6104
        firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6105
            "/ use left part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6106
            quickCheckString := aString copyTo:firstMatchIndex-1
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6107
        ] ifFalse:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6108
            "/ use right part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6109
            quickCheckString := aString copyFrom:lastMatchIndex+1            
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6110
        ].    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6111
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6112
        aString first == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6113
            pattern := '*',pattern
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6114
        ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6115
        aString last == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6116
            pattern := pattern,'*'
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6117
        ].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6118
        "/ when doing a match, be careful to not match acrosss lines
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6119
        lineCheckBlock := [:line | pattern match:line caseSensitive:caseSensitive].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6120
        quickCheckString size > 1 ifTrue:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6121
            checkBlock := [:src | 
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6122
                            (src includesString:quickCheckString caseSensitive:caseSensitive)
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6123
                            and:[ (lineCheckBlock value:src)
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6124
                            and:[ src asStringCollection contains:lineCheckBlock ]]].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6125
        ] ifFalse:[    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6126
            checkBlock := [:src | 
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6127
                            (lineCheckBlock value:src)
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6128
                            and:[ src asStringCollection contains:lineCheckBlock ]].
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6129
        ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6130
    ] ifFalse:[
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6131
        "a regular string"
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6132
        "/ because caseInsensitive searches are slower,
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6133
        "/ check if we can also compare caseInsensitive (i.e. there are no letters in it)
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6134
        (caseSensitive or:[aString conform:[:ch | ch isNationalLetter not]]) ifTrue:[
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6135
            checkBlock := [:src | 
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6136
                (src indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:true) ~~ 0 
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6137
            ]
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6138
        ] ifFalse:[
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6139
            checkBlock := [:src | 
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6140
                (src indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:false) ~~ 0 
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6141
            ]
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6142
        ].
19231
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6143
        "/ can fast skip over all non-Unicode source strings.
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6144
        aString isUnicodeString ifTrue:[
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6145
            |inner|
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6146
            inner := checkBlock.
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6147
            checkBlock := [:src | src isUnicodeString and:[inner value:src]].
ce08f2e892cc #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  6148
        ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6149
    ].
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6150
    
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6151
    stringSearchBlock :=
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6152
        [:cls :mthd :sel | 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6153
            |src found idx1 reallyFound ch1 ch2|
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6154
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6155
            found := false.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6156
            src := mthd source.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6157
            src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  6158
                ('Browser [info]: no source for ' , mthd whoString "printString") infoPrintCR.
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6159
            ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6160
                found := checkBlock value:src.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6161
                (fullWordsOnly and:[found]) ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6162
                    self halt.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6163
                    doMatch ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6164
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6165
                    ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6166
                        reallyFound := false.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6167
                        idx1 := 0.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6168
                        [ 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6169
                            reallyFound not
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6170
                            and:[
18982
b122ce4e6e60 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 18900
diff changeset
  6171
                                idx1 := src indexOfSubCollection:aString startingAt:idx1+1 ifAbsent:0 caseSensitive:caseSensitive.
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6172
                                idx1 ~~ 0]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6173
                        ] whileTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6174
                            "/ see if it is a free-standing word
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6175
                            reallyFound := true.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6176
                            idx1 > 1 ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6177
                                ch1 := src at:idx1-1.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6178
                                (ch1 isLetterOrUnderline) ifTrue:[ reallyFound := false].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6179
                            ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6180
                            (idx1+aString size-1) < src size ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6181
                                ch2 := src at:idx1+aString size.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6182
                                (ch2 isLetterOrUnderline) ifTrue:[ reallyFound := false].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6183
                            ].
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6184
                        ].
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6185
                        found := reallyFound
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6186
                    ].                
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6187
                ].                
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6188
            ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6189
            found
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6190
        ].
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6191
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6192
    resourceMethodsOnly ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6193
        ^ self resourceMethodSearchBlockFor:stringSearchBlock
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6194
    ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6195
    ^ stringSearchBlock
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6196
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6197
    "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6198
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6199
    "
18807
142bba6ab3be #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18705
diff changeset
  6200
142bba6ab3be #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18705
diff changeset
  6201
    "Modified: / 05-06-2019 / 17:02:24 / Claus Gittinger"
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  6202
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  6203
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6204
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6205
    "return a block to search for a string-literal."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6206
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6207
    ^ self
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6208
        searchBlockForStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6209
        ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6210
        resourceMethodsOnly:false
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6211
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6212
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6213
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:true
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6214
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6215
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:true
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6216
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6217
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6218
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6219
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6220
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6221
    "return a block to search for a string-literal."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  6222
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6223
    ^ self 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6224
        searchBlockForStringLiteral:aString 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6225
        ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6226
        resourceMethodsOnly:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6227
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6228
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6229
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:true
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6230
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6231
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:true
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6232
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:false
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6233
    "
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6234
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6235
    "Modified: / 20-04-2017 / 11:28:05 / stefan"
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6236
!
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6237
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6238
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly resourceMethodsOnly:resourceMethodsOnly
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6239
    "return a block to search for a string-literal."
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6240
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  6241
    |pattern doMatch checkLiteral checkSource 
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6242
     quickCheckString firstMatchIndex lastMatchIndex stringSearchBlock|
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6243
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6244
    aString isEmpty ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6245
        stringSearchBlock := [:cls :mthd :sel | true ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6246
    ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6247
        doMatch := doMatchArg.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6248
        (aString includesMatchCharacters) ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6249
            doMatch := false
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6250
        ].
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6251
        doMatch ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6252
            "a matchString"
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6253
            pattern := aString.    
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6254
            aString first == $* ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6255
                pattern := '*',pattern
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6256
            ].    
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6257
            aString last == $* ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6258
                pattern := pattern,'*'
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6259
            ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6260
            checkLiteral := [:lit | pattern match:lit caseSensitive:ignoreCase not].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6261
            firstMatchIndex := aString indexOfAny:'*#['.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6262
            lastMatchIndex := aString lastIndexOfAny:'*#['.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6263
            "/ which is longer - left or right part?
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6264
            firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6265
                "/ use left part as quickSearch
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6266
                quickCheckString := aString copyTo:firstMatchIndex-1
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6267
            ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6268
                "/ use right part as quickSearch
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6269
                quickCheckString := aString copyFrom:lastMatchIndex+1            
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6270
            ].    
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6271
            quickCheckString size > 1 ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6272
                checkSource := [:src | src includesString:quickCheckString caseSensitive:ignoreCase not]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6273
            ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6274
                checkSource := [:src | true]. "/ not worth the effort
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6275
            ].    
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6276
        ] ifFalse:[
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6277
            ignoreCase ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6278
                checkLiteral := [:lit | lit includesString:aString caseSensitive:true].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6279
                checkSource := [:src | src includesString:aString caseSensitive:true].
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6280
            ] ifFalse:[
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6281
                checkLiteral := [:lit | lit includesString:aString].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6282
                checkSource := [:src | src includesString:aString].
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6283
            ].    
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6284
        ].
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6285
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6286
        stringSearchBlock :=
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6287
            [:cls :methodArg :sel | 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6288
                "/ sorry: the following does not work, because stc does not place string-constants
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6289
                "/ into the literals.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6290
                "/        (mthd literalsDetect:[:lit |
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6291
                "/            lit isString
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6292
                "/            and:[ lit isSymbol not
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6293
                "/            and:[ checkLiteral value:lit ]]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6294
                "/        ] ifNone:[nil]) 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6295
                "/            notNil
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6296
                "/ so we must parse here (sigh)
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6297
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6298
                |method src skip tree found|
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6299
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6300
                skip := found := false.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6301
                method := methodArg originalMethodIfWrapped.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6302
                method isLazyMethod ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6303
                    src := method source.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6304
                    (src notNil) ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6305
                        method makeRealMethod.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6306
                    ] ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6307
                        skip := true
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6308
                    ].    
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6309
                ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6310
                skip ifFalse:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6311
                    src := method source.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6312
                    src isNil ifTrue:[
19367
e9085f37cd33 #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 19235
diff changeset
  6313
                        ('Browser: [info]: no source for method: ',methodArg whoString "printString") errorPrintCR.
18890
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6314
                    ].    
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6315
                    (src notNil and:[src includes:$']) ifTrue:[ "/ eliminates many
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6316
                        (checkSource value:src) ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6317
                            tree := cls parseTreeFor:sel.
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6318
                            "/ walk
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6319
                            found :=
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6320
                                tree notNil 
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6321
                                and:[tree usedLiterals contains:[:lit |
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6322
                                        lit isString
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6323
                                        and:[ lit isSymbol not
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6324
                                        and:[ checkLiteral value:lit ]]]]
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6325
                        ].        
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6326
                    ].        
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6327
                ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6328
                found
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6329
            ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6330
    ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6331
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6332
    resourceMethodsOnly ifTrue:[
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6333
        ^ self resourceMethodSearchBlockFor:stringSearchBlock
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6334
    ].
07532163de31 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18882
diff changeset
  6335
    ^ stringSearchBlock
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6336
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6337
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6338
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6339
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6340
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6341
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6342
    "
17498
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6343
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6344
    "Modified: / 20-04-2017 / 11:28:05 / stefan"
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6345
!
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6346
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6347
searchBlockForSymbol:aSymbol 
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6348
    "return a matchblock to search for all methods referencing aSymbol.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6349
     false if no such symbol exists"
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6350
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6351
    (aSymbol includesMatchCharacters) ifTrue:[
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6352
        "a matchString"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6353
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6354
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6355
                        (aLiteral isMemberOf:Symbol) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6356
                        and:[aSymbol match:aLiteral]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6357
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6358
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6359
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6360
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6361
    ] ifFalse:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6362
        aSymbol asSymbolIfInterned isNil ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6363
            ^ false
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6364
        ].
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6365
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6366
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6367
                    (aSymbol == aLiteral) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6368
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6369
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6370
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6371
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6372
    ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6373
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6374
    "Created: / 22-03-2012 / 06:56:51 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6375
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6376
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6377
!SystemBrowser class methodsFor:'startup'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6378
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6379
browseAllSelect:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6380
    "launch a browser for all methods where aBlock returns true.
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6381
     The block is called with 3 arguments, class, method and selector."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6382
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6383
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6384
        browseMethodsWhere:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6385
        title:'selected messages'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6386
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6387
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6388
     SystemBrowser browseAllSelect:[:aClass :aMethod :selector | selector numArgs == 3]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6389
    "
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6390
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6391
    "Modified: 24.1.1997 / 19:45:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6392
!
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6393
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6394
browseClass:aClass
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6395
    "launch a browser for aClass.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6396
     Notice: better go via Smalltalk browseClass:, which honors the tool-preferences"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6397
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6398
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6399
        newWithLabel:aClass name
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6400
        setupSelector:#setupForClass:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6401
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6402
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6403
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6404
     SystemBrowser browseClass:Object
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6405
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6406
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6407
    "Modified: 24.1.1997 / 19:45:16 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6408
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6409
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6410
browseClass:aClass methodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6411
    "launch a browser for all methods under aCategory in aClass"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6412
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6413
    ^ self newWithLabel:(aClass name , ' ' , aCategory)
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6414
          setupBlock:[:browser | browser setupForClass:aClass methodCategory:aCategory]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6415
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6416
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6417
     SystemBrowser browseClass:String methodCategory:'copying'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6418
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6419
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6420
    "Modified: 24.1.1997 / 19:45:23 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6421
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6422
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6423
browseClass:aClass selector:selector
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6424
    "launch a browser for the method at selector in aClass."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6425
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6426
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6427
        newWithLabel:(aClass name , ' ' , selector , ' ' , selector)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6428
        setupBlock:[:newBrowser | newBrowser setupForClass:aClass selector:selector]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6429
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6430
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6431
     SystemBrowser browseClass:Object selector:#printString
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6432
     Tools::NewSystemBrowser openInClass:Object selector:#printString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6433
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6434
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6435
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6436
browseClassCategory:aClassCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6437
    "launch a browser for all classes under aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6438
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6439
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6440
        newWithLabel:aClassCategory
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6441
        setupSelector:#setupForClassCategory:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6442
        arg:aClassCategory
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6443
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6444
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6445
     SystemBrowser browseClassCategory:'Kernel-Objects'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6446
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6447
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6448
    "Modified: 24.1.1997 / 19:45:32 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6449
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6450
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6451
browseClassHierarchy:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6452
    "launch a browser for aClass and all its superclasses.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6453
     this is different from the fullProtocol browser."
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6454
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6455
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6456
        newWithLabel:(aClass name , '-' , 'hierarchy')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6457
        setupSelector:#setupForClassHierarchy:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6458
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6459
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6460
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6461
     SystemBrowser browseClassHierarchy:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6462
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6463
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6464
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6465
browseClasses:aList label:title
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6466
    "launch a browser for all classes in aList"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6467
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6468
    ^ self 
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6469
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6470
        setupBlock:[:b | b setupForClassList:aList sort:true]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6471
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6472
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6473
     SystemBrowser browseClasses:(Array with:Object
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6474
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6475
                           title:'two classes'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6476
    "
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6477
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6478
    "Modified: 28.5.1996 / 13:52:25 / cg"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6479
!
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6480
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6481
browseClasses:aList label:title sort:doSort
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6482
    "launch a browser for all classes in aList"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6483
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6484
    ^ self 
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6485
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6486
        setupBlock:[:b | b setupForClassList:aList sort:doSort]
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6487
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6488
    "
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6489
     SystemBrowser browseClasses:(Array with:Object
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6490
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6491
                           title:'two classes'
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6492
    "
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6493
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6494
    "Created: 28.5.1996 / 13:52:09 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6495
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6496
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6497
browseClasses:aList title:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6498
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6499
    "launch a browser for all classes in aList"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6500
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6501
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6502
    ^ self browseClasses:aList label:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6503
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6504
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6505
browseClasses:aList title:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6506
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6507
    "launch a browser for all classes in aList"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6508
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6509
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6510
    ^ self browseClasses:aList label:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6511
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6512
    "Created: 28.5.1996 / 13:52:09 / cg"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6513
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6514
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6515
browseFullClassProtocol:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6516
    "launch a browser for aClasses full protocol.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6517
     This is different from hierarchy browsing."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6518
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6519
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6520
        newWithLabel:(aClass name , '-' , 'full protocol')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6521
        setupSelector:#setupForFullClassProtocol:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6522
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6523
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6524
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6525
     SystemBrowser browseFullClassProtocol:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6526
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6527
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6528
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6529
browseFullClasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6530
    "launch a browser showing all methods at once"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6531
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6532
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6533
        newWithLabel:'Full Class Browser'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6534
        setupBlock:[:newBrowser | newBrowser setupForFullClass]
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6535
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6536
    "SystemBrowser browseFullClasses"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6537
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6538
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6539
browseInstMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6540
    "launch a browser for all instance methods in aClass and all subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6541
     where aBlock evaluates to true"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6542
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6543
    ^ self      
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6544
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6545
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6546
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6547
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6548
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6549
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6550
    "Modified: 24.1.1997 / 19:44:45 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6551
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6552
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6553
browseInstMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6554
    "launch a browser for all instance methods of all classes in
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6555
     aCollectionOfClasses where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6556
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6557
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6558
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6559
        inst:true class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6560
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6561
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6562
    "Modified: 24.1.1997 / 19:43:41 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6563
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6564
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6565
browseInstMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6566
    "launch a browser for all instance methods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6567
     where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6568
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6569
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6570
        browseMethodsIn:(Array with:aClass) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6571
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6572
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6573
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6574
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6575
    "Modified: 24.1.1997 / 19:43:50 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6576
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6577
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6578
browseMethod:aMethod
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6579
    "launch a single-method browser."
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6580
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6581
    ^ self browseMethods:{ aMethod }
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6582
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6583
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6584
     self browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6585
     Tools::NewSystemBrowser browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6586
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6587
!
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6588
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6589
browseMethodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6590
    "launch a browser for all methods where category = aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6591
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6592
    |searchBlock|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6593
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6594
    aCategory includesMatchCharacters ifTrue:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6595
        searchBlock := [:c :m :s | aCategory match:m category].
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6596
    ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6597
        searchBlock := [:c :m :s | m category = aCategory]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6598
    ].
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6599
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6600
    ^ self browseMethodsWhere:searchBlock title:('all methods with category of ' , aCategory)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6601
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6602
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6603
     SystemBrowser browseMethodCategory:'printing & storing'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6604
     SystemBrowser browseMethodCategory:'print*'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6605
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6606
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6607
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6608
browseMethods:aListOfMethods
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6609
    "launch a multi-method browser."
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6610
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6611
    |title|
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6612
    
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6613
    aListOfMethods size == 1 ifTrue:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6614
        title := aListOfMethods first whoString
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6615
    ] ifFalse:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6616
        title := 'some methods'
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6617
    ].    
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6618
    ^ self browseMethods:aListOfMethods title:title
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6619
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6620
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6621
     self 
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6622
        browseMethods:(Array with:(Array compiledMethodAt:#at:))
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6623
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6624
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6625
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6626
                             with:(OrderedCollection compiledMethodAt:#at:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6627
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6628
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6629
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6630
                             with:(Array compiledMethodAt:#at:put:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6631
    "
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6632
!
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6633
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6634
browseMethods:aList title:aString
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6635
    "launch a browser for an explicit list of class/selectors.
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6636
     Each entry in the list can be either a method, or a string
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6637
     consisting of the classes name and the selector, separated by spaces. 
634
24a678f81829 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 620
diff changeset
  6638
     For class methods, the string ' class' must be appended to the classname."
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6639
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6640
    ^ self
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6641
        browseMethods:aList
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6642
        title:aString
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6643
        sort:true
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6644
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6645
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6646
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6647
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6648
        browseMethods:#('Object printOn:' 'Collection add:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6649
        title:'some methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6650
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6651
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6652
        browseMethods:#('Behavior new:' 'Setclass new:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6653
        title:'some new: methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6654
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6655
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6656
        browseMethods:(Array with:(Object compiledMethodAt:#printOn:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6657
                             with:(Collection compiledMethodAt:#add:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6658
                             with:(Object class compiledMethodAt:#initialize))
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6659
        title:'some methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6660
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6661
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6662
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6663
    "Modified: 1.11.1996 / 16:30:17 / cg"
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6664
!
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6665
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6666
browseMethods:aList title:aString sort:doSort
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6667
    "launch a browser for an explicit list of class/selectors.
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6668
     Each entry in the list can be either a method, or a string
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6669
     consisting of the classes name and the selector, separated by spaces. 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6670
     For class methods, the string ' class' must be appended to the classname."
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6671
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6672
    |l|
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6673
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6674
    (aList size == 0) ifTrue:[
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6675
        self showNoneFound:aString.
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6676
        ^ nil
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6677
    ].
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6678
    l := aList asOrderedCollection.
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6679
    l := l collect:[:entry |
15513
bbe70d563ae2 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15499
diff changeset
  6680
        |cls clsName|
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6681
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6682
        entry isString ifTrue:[
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6683
            entry
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6684
        ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6685
            cls := entry mclass.
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6686
            cls isNil ifTrue:[
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6687
                '??? unbound'
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6688
            ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6689
                cls isJavaClass ifTrue:[
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6690
                    clsName := 'JAVA::' , cls fullName 
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6691
                ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6692
                    clsName := cls name
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6693
                ].
7915
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6694
                (cls selectorAtMethod:entry) isNil ifTrue:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6695
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6696
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6697
                    , '???' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6698
                ] ifFalse:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6699
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6700
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6701
                    , (entry printStringForBrowserWithSelector:(cls selectorAtMethod:entry) inClass:cls)
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6702
                ]
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6703
            ]
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6704
        ]
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6705
      ].
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6706
        
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6707
    doSort ifTrue:[l sort].
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6708
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6709
    ^ self 
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6710
        newWithLabel:aString
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6711
        setupSelector:#setupForList:
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6712
        arg:l 
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6713
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6714
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6715
     SystemBrowser 
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6716
        browseMethods:#('Object printOn:' 'Collection add:')
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6717
        title:'some methods'
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6718
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6719
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6720
        browseMethods:#('Behavior new:' 'Setclass new:')
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6721
        title:'some new: methods'
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6722
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6723
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6724
        browseMethods:(Array with:(Object compiledMethodAt:#printOn:)
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6725
                             with:(Collection compiledMethodAt:#add:)
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6726
                             with:(Object class compiledMethodAt:#initialize))
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6727
        title:'some methods'
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6728
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6729
    "
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6730
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6731
    "Modified: / 17-06-1996 / 17:07:46 / stefan"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6732
    "Modified: / 05-03-2007 / 16:25:25 / cg"
2826
9d7f11697806 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  6733
!
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6734
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6735
browseMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6736
    "launch a browser for all instance- and classmethods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6737
     and all its subclasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6738
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6739
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6740
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6741
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6742
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6743
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6744
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6745
    "Modified: 24.1.1997 / 19:44:00 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6746
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6747
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6748
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6749
    "launch a browser for all instance- (if wantInst is true) and/or
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6750
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6751
     where aBlock evaluates to true.
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  6752
     The block is called with 3 arguments, class, method and selector."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6753
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6754
    |list|
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6755
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6756
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6757
     since this may take a long time, lower my priority ...
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6758
    "
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6759
    Processor activeProcess 
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6760
        withPriority:Processor activePriority-1 to:Processor activePriority
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6761
    do:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6762
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6763
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6764
    ^ self browseMethods:list title:title
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6765
!
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6766
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6767
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6768
    "launch a browser for all instance- (if wantInst is true) and/or
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6769
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6770
     where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6771
     The block is called with 3 arguments, class, method and selector."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6772
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6773
    |list|
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6774
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6775
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6776
     since this may take a long time, lower my priority ...
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6777
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6778
    Processor activeProcess 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6779
        withPriority:Processor activePriority-1 to:Processor activePriority
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6780
    do:[
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6781
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6782
        list size == 0 ifTrue:[warnBlock value].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6783
    ].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6784
    ^ self browseMethods:list title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6785
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6786
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6787
browseMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6788
    "launch a browser for all instance- and classmethods from 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6789
     all classes in aCollectionOfClasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6790
     The block is called with 3 arguments, class, method and seelctor."
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6791
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6792
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6793
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6794
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6795
        class:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6796
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6797
        title:title
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6798
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6799
    "Modified: 24.1.1997 / 19:44:17 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6800
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6801
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6802
browseMethodsIn:aCollectionOfClasses where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6803
    "launch a browser for all instance- and classmethods from 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6804
     all classes in aCollectionOfClasses where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6805
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6806
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6807
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6808
        browseMethodsIn:aCollectionOfClasses 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6809
        inst:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6810
        class:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6811
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6812
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6813
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6814
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6815
    "Modified: 24.1.1997 / 19:44:17 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6816
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6817
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6818
browseMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6819
    "launch a browser for all instance- and classmethods in aClass 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6820
     where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6821
     The block is called with 3 arguments, class, method and seelctor."
93
claus
parents: 90
diff changeset
  6822
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6823
    ^ self browseMethodsIn:(Array with:aClass) where:aBlock title:title
93
claus
parents: 90
diff changeset
  6824
!
claus
parents: 90
diff changeset
  6825
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6826
browseMethodsWhere:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6827
    "launch a browser for all methods where aBlock returns true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6828
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6829
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6830
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6831
        browseMethodsIn:(Smalltalk allClasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6832
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6833
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6834
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6835
    "Modified: 24.1.1997 / 19:44:30 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6836
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6837
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6838
browseMethodsWhere:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6839
    "launch a browser for all methods where aBlock returns true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6840
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6841
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6842
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6843
        browseMethodsIn:(Smalltalk allClasses) 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6844
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6845
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6846
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6847
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6848
    "Modified: 24.1.1997 / 19:44:30 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6849
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6850
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6851
findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6852
    "return all instance- (if wantInst is true) and/or classmethods (if wantClass is true) 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6853
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6854
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6855
    |list checkedClasses checkBlock nClasses 
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6856
     nClassesDone oldPercentage newPercentage nClassesSinceLastPercentage bulkSize|
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6857
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6858
    checkedClasses := IdentitySet new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6859
    list := OrderedCollection new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6860
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6861
    checkBlock := [:cls |
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6862
        (checkedClasses includes:cls) ifFalse:[
8554
441ea25ad1fd Do not complain about obsolete classes which are unloaded when searching
Stefan Vogel <sv@exept.de>
parents: 8505
diff changeset
  6863
            (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6864
                Logger debug:'Browser method search: skipping obsolete class: %1' with:cls displayString
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6865
            ] ifFalse:[
11941
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6866
                aBlock numArgs == 1 ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6867
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6868
                        (aBlock value:method) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6869
                            list add:method "/ (cls name , ' ' , sel)
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6870
                        ]
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6871
                    ].
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6872
                ] ifFalse:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6873
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6874
                        (aBlock value:cls value:method value:sel) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6875
                            list add:method "/ (cls name , ' ' , sel)
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6876
                        ]
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6877
                    ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6878
                ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6879
                checkedClasses add:cls.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6880
            ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6881
        ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6882
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6883
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6884
    nClasses := aCollectionOfClasses size.
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6885
    nClassesDone := 0.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6886
    oldPercentage := 0.
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6887
    nClassesSinceLastPercentage := 0.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6888
    bulkSize := (nClasses // 30) max:10. "/ roughly every 3%.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6889
    
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6890
    aCollectionOfClasses do:[:aClass |
3008
1a45c272b13f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2901
diff changeset
  6891
        (aClass notNil and:[aClass isObsolete not]) ifTrue:[
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6892
            nClassesSinceLastPercentage := nClassesSinceLastPercentage + 1.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6893
            
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6894
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6895
             output disabled - it slows down things too much (when searching for
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6896
             implementors or senders)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6897
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6898
            wantInst ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6899
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6900
                checkBlock value:aClass
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6901
            ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6902
            wantClass ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6903
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6904
                checkBlock value:(aClass class)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6905
            ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6906
            nClassesSinceLastPercentage > bulkSize ifTrue:[
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6907
                "/ Processor yield
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6908
                newPercentage := nClassesDone * 100 // nClasses.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6909
                newPercentage ~= oldPercentage ifTrue:[
17440
930529441c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  6910
                    ProgressNotification progressPercentage:newPercentage statusInfo:('%1 found' bindWith:list size).
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6911
                    oldPercentage := newPercentage.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6912
                ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6913
                nClassesSinceLastPercentage := 0.
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6914
            ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6915
        ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6916
        nClassesDone := nClassesDone + 1.
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6917
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6918
    ^ list
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6919
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6920
    "Modified: / 14-03-2017 / 12:05:57 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6921
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6922
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6923
findMethodsIn:aCollectionOfClasses where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6924
    "return all instance- and classmethods 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6925
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6926
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6927
    ^ self
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6928
        findMethodsIn:aCollectionOfClasses 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6929
        inst:true
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6930
        class:true      
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6931
        where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6932
! !
93
claus
parents: 90
diff changeset
  6933
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6934
!SystemBrowser class methodsFor:'startup with query'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6935
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6936
askThenBrowseClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6937
    self getClassThenPerform:#browseClass:
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6938
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6939
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6940
     SystemBrowser askThenBrowseClass
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6941
     Tools::NewSystemBrowser askThenBrowseClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6942
    "
93
claus
parents: 90
diff changeset
  6943
!
claus
parents: 90
diff changeset
  6944
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6945
askThenBrowseClassHierarchy
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6946
    self getClassThenPerform:#browseClassHierarchy:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6947
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6948
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6949
     SystemBrowser askThenBrowseClassHierarchy
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6950
     Tools::NewSystemBrowser askThenBrowseClassHierarchy
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6951
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6952
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6953
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6954
askThenBrowseFullClassProtocol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6955
    self getClassThenPerform:#browseFullClassProtocol:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6956
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6957
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6958
     SystemBrowser askThenBrowseFullClassProtocol
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6959
     Tools::NewSystemBrowser askThenBrowseFullClassProtocol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6960
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6961
! !
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6962
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6963
!SystemBrowser class methodsFor:'utilities'!
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6964
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6965
askForClass
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6966
    ^ self askForClassWithFilter:nil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6967
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6968
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6969
     Tools::NewSystemBrowser askForClass   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6970
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6971
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6972
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6973
askForClassName
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6974
    ^ self askForClassNameWithFilter:nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6975
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6976
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6977
     Tools::NewSystemBrowser askForClassName   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6978
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6979
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6980
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6981
askForClassNameWithFilter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6982
    self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6983
        askForClassToSearch:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6984
        single:true
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6985
        msgTail:''
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6986
        resources:(self classResources)
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6987
        filter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6988
        forBrowser:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6989
        thenDo:[:className :single :doWhat |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6990
            ^ className
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6991
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6992
    ^ nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6993
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6994
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6995
     Tools::NewSystemBrowser askForClassName   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6996
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6997
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6998
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6999
askForClassToSearch:doWhatByDefault single:singleClass msgTail:msgTail resources:resourcesOrNil filter:filterOrNil forBrowser:aBrowserOrNil thenDo:aBlock
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7000
    "utility common code for both opening a new browser on a class and
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7001
     to search for a class in an existing browser.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7002
     If singleClass is true, a single class will be asked for and browsed,
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7003
     otherwise, a match pattern is allowed and a multi-class browser is opened.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7004
     Moved from instance protocol for better reusability."
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7005
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7006
    |box boxLabel title okText className canFind doWhat classNameHolder updateList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7007
     allClasses classNamesInChangeSet
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7008
     allNames allFullNames initialShortNames initialFullNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7009
     colorizedFullNames colorizedShortNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7010
     resources check showingWhatLabel showFullNameHolder genShortNameListEntry|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7011
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7012
    resources := resourcesOrNil ? self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7013
    showFullNameHolder := (LastClassSearchBoxShowedFullName ? false) asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7014
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7015
    doWhat := doWhatByDefault.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7016
    canFind := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7017
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7018
    title := ''.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7019
    boxLabel := (resources string:'Select a class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7020
    okText := 'OK'.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7021
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7022
    genShortNameListEntry :=
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7023
        [:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7024
            |ns|
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7025
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7026
            cls isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7027
                nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7028
            ] ifFalse:[
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7029
                (filterOrNil notNil and:[ (filterOrNil value:cls) not]) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7030
                    nil
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7031
                ] ifFalse:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7032
                    ns := cls topNameSpace name.
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7033
                    ns = 'Smalltalk'
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7034
                        ifTrue:[ ns := '' ]
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7035
                        ifFalse:[ns := ' (in ',ns,')'].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7036
                    cls nameWithoutNameSpacePrefix,ns
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7037
                ]
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7038
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7039
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7040
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7041
    classNamesInChangeSet := ChangeSet current changedClasses
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7042
                                select: (filterOrNil ? [:cls | true])
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7043
                                thenCollect:[:each | each theNonMetaclass name].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7044
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7045
    initialFullNames := self visitedClassNamesHistory.
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7046
    (filterOrNil notNil) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7047
        initialFullNames := initialFullNames select:[:nm | filterOrNil value:(Smalltalk at:nm)].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  7048
    ].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7049
    initialShortNames := initialFullNames collect:[:nm | genShortNameListEntry value:(Smalltalk at:nm)] thenSelect:[:nm | nm notNil].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7050
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7051
    colorizedFullNames := initialFullNames collect:[:clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7052
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7053
                                    clsName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7054
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7055
                                    clsName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7056
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7057
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7058
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7059
    colorizedShortNames := initialShortNames with:initialFullNames collect:[:shortName :clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7060
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7061
                                    shortName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7062
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7063
                                    shortName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7064
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7065
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7066
13046
f3c72a68d92a title of class search box
Claus Gittinger <cg@exept.de>
parents: 13037
diff changeset
  7067
    title := (resources string:title) , msgTail , '.\' , (resources string:'(TAB to complete; matchPattern allowed - "*" for all):').
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7068
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7069
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7070
                enterBoxForClassWithCodeSelectionTitle:title withCRs
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7071
                withList:(showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames])
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7072
                okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7073
                forBrowser:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7074
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7075
    box label:boxLabel.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7076
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7077
    allClasses := Smalltalk allClasses copyAsOrderedCollection.
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7078
    filterOrNil notNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7079
        allClasses := allClasses select: filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7080
    ].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7081
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7082
    allNames := (allClasses
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7083
                    collect:[:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7084
                        |ns nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7085
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7086
                        ns := cls topNameSpace name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7087
                        ns = 'Smalltalk'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7088
                            ifTrue:[ ns := '' ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7089
                            ifFalse:[ns := ' (in ',ns,')'].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7090
                        cls isNameSpace ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7091
                            nm := cls nameWithoutNameSpacePrefix,ns,' (Namespace)'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7092
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7093
                            nm := cls nameWithoutNameSpacePrefix,ns
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7094
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7095
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7096
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7097
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7098
                            nm
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7099
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7100
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7101
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7102
    allFullNames := (allClasses 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7103
                    collect:[:cls | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7104
                        |nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7105
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7106
                        nm := cls name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7107
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7108
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7109
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7110
                            nm
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7111
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7112
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7113
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7114
    updateList := [
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7115
            |nameToSearch list namesStarting namesIncluding lcName nameList|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7116
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7117
            (nameToSearch := classNameHolder value withoutSeparators) isEmpty ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7118
                showingWhatLabel label:(resources string:'Recently visited:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7119
                list := (showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames]).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7120
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7121
                showingWhatLabel label:(resources string:'Matching classes:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7122
                nameList := showFullNameHolder value
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7123
                                ifTrue:[ allFullNames ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7124
                                ifFalse:[ allNames ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7125
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7126
                lcName := nameToSearch asLowercase.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7127
                (lcName includesString:'::') ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7128
                    list := OrderedCollection new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7129
                    allClasses doWithIndex:[:cls :idx |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7130
                        |isIncluded|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7131
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7132
                        (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7133
                            isIncluded := (lcName match:cls name asLowercase)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7134
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7135
                            isIncluded := (cls name includesString:lcName caseSensitive:false)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7136
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7137
                        isIncluded ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7138
                            list add:(nameList at:idx)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7139
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7140
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7141
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7142
                    (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7143
                        list := nameList select:[:nm | lcName match:nm asLowercase]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7144
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7145
                        namesIncluding := nameList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7146
                                            select:[:nm |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7147
                                                "/ nm asLowercase startsWith:lcName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7148
                                                nm asLowercase includesString:lcName caseSensitive:false
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7149
                                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7150
                        namesStarting := namesIncluding select:[:nm | nm asLowercase startsWith:lcName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7151
                        list := namesStarting , {nil} , (namesIncluding \ namesStarting).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7152
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7153
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7154
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7155
            box listView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7156
                list:list;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7157
                scrollToLine:((list findFirst:[:line | (line ? '') startsWith:lcName]) max:1)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7158
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7159
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7160
    classNameHolder := '' asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7161
    box enterField
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7162
        model:classNameHolder;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7163
        immediateAccept:true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7164
    classNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7165
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7166
    box entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7167
    box action:[:aString | className := aString].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7168
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7169
    box panelView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7170
        addSubView:(showingWhatLabel := (Label label:(resources string:'Recently visited:')) adjust:#left) before:nil;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7171
        addSubView:(check := CheckBox label:(resources string:'Show Full Name (do not strip off Namespace)') model:showFullNameHolder) before:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7172
    showFullNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7173
    box enterField origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7174
    box listView origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7175
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7176
    box extent:(400 @ 350).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7177
    box open.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7178
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7179
    className isEmptyOrNil ifTrue:[^ nil "cancel"].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7180
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7181
    LastClassSearchBoxShowedFullName := showFullNameHolder value.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7182
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7183
    (className endsWith:$) ) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7184
        (className indexOfSubCollection:'(in ') == 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7185
            "/ a namespace
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7186
            className := (className copyTo:(className indexOfSubCollection:'(Name')-1) withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7187
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7188
            className := ((className copyFrom:(className indexOfSubCollection:'(in ')+4)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7189
                            copyButLast:1)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7190
                         , '::' , className asCollectionOfWords first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7191
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7192
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7193
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7194
    aBlock notNil ifTrue:[aBlock value:className optionalArgument:singleClass and:doWhat].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7195
    ^ className
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7196
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7197
    "Modified: / 23-07-2012 / 11:00:22 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7198
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7199
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7200
askForClassWithFilter:filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7201
    |className|
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7202
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7203
    className := self askForClassNameWithFilter:filterOrNil.
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7204
    className notEmptyOrNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7205
        ^ Smalltalk classNamed:className
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7206
    ].
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7207
    ^ nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7208
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7209
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7210
     Tools::NewSystemBrowser askForClass   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7211
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7212
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  7213
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7214
classWithNameSimilarTo:className
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7215
    "helper for class-name entry; finds a class by name tolerant w.r.t. case"
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7216
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7217
    |allMatchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7218
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7219
    allMatchingClasses := self classesWithNameSimilarTo:className.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7220
    ^ allMatchingClasses firstIfEmpty:nil
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7221
!
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7222
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7223
classesWithNameSimilarTo:className
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7224
    "helper for class-name entry; finds a class by name tolerant w.r.t. case"
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7225
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7226
    ^ self classesWithNameSimilarTo:className from:nil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7227
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7228
    "Modified: / 22-08-2006 / 13:22:41 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7229
!
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7230
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7231
classesWithNameSimilarTo:className from:aNameSpaceOrNil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7232
    "helper for class-name entry; finds classes with a name similar to the argument, className"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7233
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7234
    |nm lcName class allClasses triedDetectors triedMatchers allMatchingClasses
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7235
     prefNameSpaceOrNil prefLcNameSpace|
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7236
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7237
    prefNameSpaceOrNil := (aNameSpaceOrNil == Smalltalk) ifTrue:[ nil ] ifFalse:[aNameSpaceOrNil].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7238
12747
b59676921d61 refactored
Claus Gittinger <cg@exept.de>
parents: 12729
diff changeset
  7239
    nm := className withoutPrefix:'Smalltalk::'.
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7240
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7241
    prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7242
        class := prefNameSpaceOrNil at:nm asSymbol.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7243
        class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7244
        prefLcNameSpace := prefNameSpaceOrNil name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7245
    ].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7246
    class := Smalltalk at:nm asSymbol.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7247
    class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7248
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7249
    lcName := className asLowercase.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7250
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7251
    allClasses := Smalltalk allClasses.
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7252
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7253
    triedDetectors := OrderedCollection new.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7254
    triedDetectors add:[:cls | cls name asLowercase = lcName].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7255
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7256
    triedDetectors do:[:eachTry |
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7257
        |class|
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7258
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7259
        class := allClasses detect:eachTry ifNone:nil.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7260
        class notNil ifTrue:[^ Array with:class].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7261
    ].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7262
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7263
    triedMatchers := OrderedCollection new.
5018
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  7264
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase = lcName].      
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  7265
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase = lcName].      
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7266
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7267
    triedMatchers add:[:cls | cls name asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7268
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7269
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  7270
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase includesString:lcName].      
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  7271
    triedMatchers add:[:cls | cls name asLowercase includesString:lcName].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7272
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7273
    allMatchingClasses := IdentitySet new.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7274
    triedMatchers do:[:eachTry |
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7275
        |matchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7276
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7277
        matchingClasses := allClasses select:eachTry.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7278
"/        matchingClasses size == 1 ifTrue:[^ matchingClasses].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7279
        allMatchingClasses addAll:matchingClasses.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7280
    ].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7281
    allMatchingClasses isEmpty ifTrue:[^ #()].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7282
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7283
    allMatchingClasses := allMatchingClasses asOrderedCollection.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7284
    allMatchingClasses 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7285
        sort:[:a :b | 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7286
            |lcNameA lcNameB da db distA distB |
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7287
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7288
            lcNameA := a name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7289
            lcNameB := b name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7290
            prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7291
                a nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7292
                    lcNameA := a nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7293
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7294
                b nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7295
                    lcNameB := b nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7296
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7297
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7298
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7299
            distA := da := lcName levenshteinTo:lcNameA.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7300
            distB := db := lcName levenshteinTo:lcNameB.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7301
            "prefer prefixes (i.e. classes whose name starts with what we search for)"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7302
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7303
            (lcNameA startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7304
                distB := distB * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7305
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7306
            (lcNameB startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7307
                distA := distA * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7308
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7309
            distA < distB
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7310
        ].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7311
    ^ allMatchingClasses.
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7312
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7313
    "
6678
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7314
     self classesWithNameSimilarTo:'NewSystemBrowser'
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7315
     self classesWithNameSimilarTo:'Moose::MSEAbstractOperator'
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7316
    "
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7317
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7318
    "Created: / 22-08-2006 / 13:22:48 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7319
    "Modified: / 22-08-2006 / 14:53:38 / cg"
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7320
!
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7321
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7322
enterBoxForClassWithCodeSelectionTitle:title withList:listOrNil okText:okText forBrowser:aBrowserOrNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7323
    "convenient method: setup an enterBox with initial text taken
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7324
     from the codeview's selection."
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7325
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7326
    |sel box initialText superclass currentClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7327
     methods someMethod offeredClass anyClose closeName s usedGlobals list|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7328
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7329
    list := listOrNil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7330
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7331
    aBrowserOrNil notNil ifTrue:[    
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7332
        currentClass := aBrowserOrNil theSingleSelectedClass.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7333
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7334
        sel := aBrowserOrNil selectionInCodeView.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7335
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7336
            aBrowserOrNil selectedNamespacesValue doWithExit:[:eachNs :exit |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7337
                s := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7338
                (s knownAsSymbol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7339
                and:[(Smalltalk at:s asSymbol) isBehavior]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7340
                    "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7341
                    sel := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7342
                    exit value:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7343
                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7344
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7345
            (sel knownAsSymbol and:[currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7346
            and:[(currentClass theNonMetaclass privateClassesAt:sel asSymbol) notNil]]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7347
                "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7348
                sel := (currentClass theNonMetaclass privateClassesAt:sel asSymbol) name
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7349
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7350
                (sel knownAsSymbol and:[(Smalltalk at:sel asSymbol) isBehavior]) ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7351
                    "/ ignore it, if there is no class-name which comes close.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7352
                    anyClose := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7353
                    Smalltalk keysAndValuesDo:[:aGlobalName :aGlobal|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7354
                        aGlobal isBehavior ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7355
                            aGlobal isMeta ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7356
                                aGlobal name == aGlobalName ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7357
                                    ((aGlobalName startsWith:sel)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7358
                                    or:[(sel startsWith:aGlobalName)]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7359
                                        closeName isNil ifTrue:[closeName := aGlobalName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7360
                                        anyClose := true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7361
                                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7362
                                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7363
                            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7364
                        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7365
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7366
                    anyClose ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7367
                        sel := nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7368
                    ] ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7369
                        sel := closeName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7370
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7371
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7372
            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7373
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7374
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7375
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7376
            initialText := sel asString withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7377
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7378
            aBrowserOrNil codeAspect == SyntaxHighlighter codeAspectMethod ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7379
                methods := aBrowserOrNil selectedMethodsValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7380
                methods size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7381
                    someMethod := methods first.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7382
                    usedGlobals := someMethod usedGlobals collect:[:eachVar | eachVar asSymbol].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7383
                    usedGlobals := usedGlobals select:[:eachVar | (Smalltalk at:eachVar) isBehavior].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7384
                    usedGlobals size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7385
                        list := list reject:[:each | usedGlobals includes:each ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7386
                        list := usedGlobals asOrderedCollection sort , list.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7387
                        offeredClass := Smalltalk at:usedGlobals first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7388
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7389
                        offeredClass := someMethod mclass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7390
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7391
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7392
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7393
                (aBrowserOrNil navigationState isVersionDiffBrowser
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7394
                or:[aBrowserOrNil navigationState isClassDocumentationBrowser]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7395
                    offeredClass := currentClass.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7396
                    (offeredClass notNil and:[offeredClass isPrivate]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7397
                        offeredClass := offeredClass owningClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7398
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7399
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7400
                    (currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7401
                    and:[(superclass := currentClass superclass) notNil]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7402
                        offeredClass := superclass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7403
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7404
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7405
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7406
            offeredClass notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7407
                initialText := offeredClass theNonMetaclass name
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7408
            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7409
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7410
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7411
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7412
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7413
                enterBoxTitle:(self classResources string:title)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7414
                withList:list
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7415
                okText:(self classResources string:okText).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7416
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7417
    initialText notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7418
        box initialText:initialText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7419
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7420
    ^ box
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7421
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7422
    "Created: / 13-02-2000 / 20:56:18 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7423
    "Modified: / 27-07-2012 / 22:18:34 / cg"
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7424
    "Modified (comment): / 27-07-2017 / 12:58:02 / cg"
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7425
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7426
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7427
enterBoxTitle:title withList:aListOrNil okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7428
    "convenient method: setup enterBox"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7429
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7430
    |box rsrcs|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7431
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7432
    aListOrNil notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7433
        box := ListSelectionBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7434
        "/ box := EnterBoxWithList new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7435
        box list:aListOrNil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7436
    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7437
        box := EnterBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7438
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7439
    rsrcs := self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7440
    box title:(rsrcs string:title) okText:(rsrcs string:okText).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7441
    ^ box
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7442
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7443
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7444
     self enterBoxTitle:'bla' withList:#('a' 'b' 'c') okText:'gaga'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7445
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7446
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7447
    "Created: / 13.2.2000 / 20:53:53 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7448
    "Modified: / 1.3.2000 / 11:15:09 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7449
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7450
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7451
extractClassAndSelectorFrom:aString into:aBlock
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7452
    "given a string which can be either 'class>>sel' or
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7453
     'class sel', extract className and selector, and call aBlock with
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7454
     the result.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7455
     Useful to open browser on a method as selected in some documentation."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7456
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7457
    |sel clsName isMeta sep s|
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7458
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7459
    sel := aString.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7460
    sel notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7461
        sel := sel asString withoutSeparators.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7462
        ('*>>*' match:sel) ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7463
            sep := $>
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7464
        ] ifFalse:[
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  7465
            ('*ยป*' match:sel) ifTrue:[
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  7466
                sep := $ยป
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7467
            ] ifFalse:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7468
                ('* *' match:sel) ifTrue:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7469
                    sep := Character space
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7470
                ]
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7471
            ].
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7472
        ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7473
        sep notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7474
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7475
             extract class/sel from selection
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7476
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7477
            s := ReadStream on:sel.
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7478
            clsName := (s upTo:sep) withoutSeparators.
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7479
            [s peek == sep] whileTrue:[s next].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7480
            sel := (s upToEnd) withoutSeparators.
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7481
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7482
            (clsName endsWith:' class') ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7483
                isMeta := true.
12713
7cccc4a7733c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  7484
                clsName := clsName copyButLast:6 "copyTo:(clsName size - 5)"
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7485
            ] ifFalse:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7486
                isMeta := false
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7487
            ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7488
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7489
    ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7490
    aBlock value:clsName value:sel value:isMeta
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7491
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7492
    "Modified: / 17.6.1996 / 16:52:14 / stefan"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7493
    "Created: / 6.2.2000 / 00:51:51 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7494
    "Modified: / 6.2.2000 / 00:56:43 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7495
!
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7496
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7497
extractSelectorFrom:aString
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7498
    "given an arbitrary string, try to extract a useful selector.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7499
     Useful to open browser on a selected code fragment."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7500
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7501
    |s sel sel2 t idx|
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7502
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7503
    aString isEmptyOrNil ifTrue:[^ nil].
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7504
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  7505
    (idx := aString indexOf:$ยป) ~~ 0 ifTrue:[
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7506
        s := (aString copyFrom:idx+1) withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7507
        s isEmpty ifTrue:[^ nil]. 
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7508
    ] ifFalse:[    
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7509
        s := aString asString string withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7510
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7511
    sel := s asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7512
    sel isNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7513
        sel := s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7514
    ] ifFalse:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7515
        (sel endsWith:$:) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7516
            ^ sel.     
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7517
        ].
6705
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7518
    ].
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7519
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7520
    t := Parser selectorInExpression:sel.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7521
    t notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7522
        sel := t
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7523
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7524
    (sel = s or:[sel isNil or:[t == #'>>']]) ifTrue:[
16863
d9e632f16155 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16847
diff changeset
  7525
        "oops - that's probably not what we want here ..."
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7526
        self extractClassAndSelectorFrom:s into:[:c :s :m |
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7527
            sel := s
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7528
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7529
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7530
    s := sel asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7531
    s notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7532
        ^ s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7533
    ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7534
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7535
    (sel startsWith:$#) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7536
        sel2 := sel copyFrom:2.
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7537
        ((sel2 startsWith:$') and:[(sel2 endsWith:$') and:[sel2 size > 2]]) ifTrue:[
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7538
            sel2 := (sel2 copyFrom:2) copyButLast:1
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7539
        ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7540
        (sel2 := sel2 asSymbolIfInterned) notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7541
            ^ sel2.
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7542
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7543
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7544
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7545
    ^ sel
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7546
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7547
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7548
     self extractSelectorFrom:'at:put:'      
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7549
     self extractSelectorFrom:'#at:put:'                       
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7550
     self extractSelectorFrom:'#''at:put:'''                       
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7551
     self extractSelectorFrom:'at:something put:someValue'     
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7552
     self extractSelectorFrom:'self at:something put:someValue'
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7553
     self extractSelectorFrom:'(self at:something put:someValue)' 
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7554
     self extractSelectorFrom:'[self at:something put:someValue] value' 
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  7555
     self extractSelectorFrom:'Array ยป at:put:' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7556
     self extractSelectorFrom:'Array>>at:put:' 
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7557
     self extractSelectorFrom:'Array>>#at:put:' 
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7558
     self extractSelectorFrom:'Array>>#''at:put:''' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7559
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7560
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7561
    "Created: / 06-02-2000 / 00:49:44 / cg"
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7562
    "Modified: / 04-08-2018 / 16:54:20 / Claus Gittinger"
6560
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7563
!
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7564
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7565
getClassThenPerform:aSelector
18615
eb18306788b0 Fix usage of unser var "resources"
Stefan Vogel <sv@exept.de>
parents: 18614
diff changeset
  7566
    |classNameEntered classEntered enterBox resources|
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7567
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7568
    "/ new Code:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7569
    classNameEntered := self askForClassName.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7570
18615
eb18306788b0 Fix usage of unser var "resources"
Stefan Vogel <sv@exept.de>
parents: 18614
diff changeset
  7571
    resources := self classResources.
eb18306788b0 Fix usage of unser var "resources"
Stefan Vogel <sv@exept.de>
parents: 18614
diff changeset
  7572
eb18306788b0 Fix usage of unser var "resources"
Stefan Vogel <sv@exept.de>
parents: 18614
diff changeset
  7573
"/ old Code:
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7574
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7575
"/    enterBox := EnterBox title:(self classResources stringWithCRs:'Browse which class:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7576
"/    enterBox okText:(resources string:'Browse').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7577
"/    enterBox entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7578
"/    enterBox action:[:className | classNameEntered := className].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7579
"/    enterBox showAtPointer.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7580
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7581
    classNameEntered notEmptyOrNil ifTrue:[   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7582
        classEntered := Smalltalk classNamed:classNameEntered.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7583
        classEntered isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7584
            self warn:(resources string:'No such class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7585
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7586
            self perform:aSelector with:classEntered  
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7587
        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7588
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7589
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7590
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7591
     SystemBrowser getClassThenPerform:#browseClass:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7592
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7593
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7594
    "Modified: / 10-08-2006 / 12:54:20 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7595
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7596
6560
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7597
resourceEditorClassFor:aResource 
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7598
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7599
     return an appropriate editor class."
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7600
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7601
    (aResource == #canvas) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7602
        ^ UIPainter
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7603
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7604
    (aResource == #menu) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7605
        ^ MenuEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7606
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7607
    ((aResource == #image) or:[aResource == #fileImage]) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7608
        ^ ImageEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7609
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7610
    (aResource == #help) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7611
        ^ UIHelpTool
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7612
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7613
    (aResource == #tableColumns) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7614
        ^ DataSetBuilder
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7615
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7616
    (aResource == #tabList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7617
        ^ TabListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7618
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7619
    (aResource == #hierarchicalList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7620
        ^ HierarchicalListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7621
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7622
    ^ nil
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7623
!
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7624
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7625
resourceEditorClassForResources:resources
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7626
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7627
     return an appropriate editor class."
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7628
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7629
    resources keysDo:[:eachResource |
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7630
        |editor|
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7631
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7632
        editor := self resourceEditorClassFor:eachResource.
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7633
        editor notNil ifTrue:[ ^ editor].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7634
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7635
    ^ nil
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7636
! !
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7637
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7638
!SystemBrowser::BrowserHistoryEntry methodsFor:'accessing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7639
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7640
className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7641
    "return the value of the instance variable 'className' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7642
13947
dd203de7c75a class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13921
diff changeset
  7643
    ^ className ? '*anonymous*'
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7644
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7645
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7646
className:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7647
    "set the value of the instance variable 'className' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7648
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7649
    className := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7650
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7651
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7652
className:classNameArg meta:metaArg selector:selectorArg
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7653
    className := classNameArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7654
    meta := metaArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7655
    selector := selectorArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7656
!
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7657
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7658
icon
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7659
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7660
    ^nil
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7661
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7662
    "Created: / 05-05-2011 / 23:57:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7663
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7664
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7665
label
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7666
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7667
    ^self displayString
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7668
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7669
    "Created: / 05-05-2011 / 23:57:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7670
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7671
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7672
meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7673
    "return the value of the instance variable 'meta' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7674
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7675
    ^ meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7676
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7677
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7678
meta:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7679
    "set the value of the instance variable 'meta' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7680
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7681
    meta := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7682
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7683
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7684
selector
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7685
    "return the value of the instance variable 'selector' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7686
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7687
    ^ selector
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7688
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7689
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7690
selector:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7691
    "set the value of the instance variable 'selector' (automatically generated)"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7692
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7693
    selector := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7694
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7695
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7696
theClass
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7697
    ^ Smalltalk at:className asSymbol
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7698
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7699
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7700
!SystemBrowser::BrowserHistoryEntry methodsFor:'comparing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7701
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7702
= anEntry
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7703
    ^ className = anEntry className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7704
      and:[meta = anEntry meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7705
      and:[selector = anEntry selector]]
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7706
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7707
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7708
!SystemBrowser::BrowserHistoryEntry methodsFor:'displaying'!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7709
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7710
displayOn:aGCOrStream
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7711
    | cls name |
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7712
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7713
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
17432
c15b22dc05c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17404
diff changeset
  7714
    "/ old ST80 means: draw-yourself on a GC.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7715
    (aGCOrStream isStream) ifFalse:[
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7716
        ^ super displayOn:aGCOrStream
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7717
    ].
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7718
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7719
    cls := self theClass.
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7720
    name := cls notNil ifTrue:[cls nameInBrowser] ifFalse:[className].
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7721
    name printOn:aGCOrStream.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7722
    meta ifTrue:[
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7723
        "/ aGCOrStream emphasis:#bold.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7724
        aGCOrStream nextPutAll:' class'.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7725
        "/ aGCOrStream emphasis:nil.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7726
    ].
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7727
    selector notNil ifTrue:[ 
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7728
        aGCOrStream
19235
ddb77a322631 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19234
diff changeset
  7729
            nextPutAll:' ยป ';
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7730
            bold;
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7731
            nextPutAll:selector;
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7732
            normal.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7733
    ].
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7734
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7735
    "Created: / 15-04-2010 / 13:47:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7736
    "Modified: / 14-10-2013 / 12:18:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7737
    "Modified: / 20-06-2017 / 08:59:26 / cg"
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7738
! !
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7739
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  7740
!SystemBrowser class methodsFor:'documentation'!
93
claus
parents: 90
diff changeset
  7741
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7742
version
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7743
    ^ '$Header$'
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7744
!
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7745
8851
287f3e03a645 changed: #iconForClass:
Claus Gittinger <cg@exept.de>
parents: 8759
diff changeset
  7746
version_CVS
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7747
    ^ '$Header$'
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7748
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7749
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7750
version_SVN
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7751
    ^ '$Id$'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  7752
! !
4112
ed7af6707ad7 emphasisForChangedCode
tm
parents: 3834
diff changeset
  7753
12475
469fd10da830 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12073
diff changeset
  7754
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  7755
SystemBrowser initialize!