SystemBrowser.st
author Claus Gittinger <cg@exept.de>
Wed, 22 Aug 2018 15:37:08 +0200
changeset 18348 b3cdcd31f2cf
parent 18317 436c9d4c5603
child 18411 f247ae2dd036
permissions -rw-r--r--
#REFACTORING by cg class: Tools::CodeView2::TextView changed: #updateReallyModified
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     1
"
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
     3
              All Rights Reserved
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     4
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    10
 hereby transferred.
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    11
"
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
    12
"{ Package: 'stx:libtool' }"
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
    13
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
    14
"{ NameSpace: Smalltalk }"
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
    15
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    16
ApplicationModel subclass:#SystemBrowser
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    17
	instanceVariableNames:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    18
	classVariableNames:'CheckForInstancesWhenRemovingClasses ClassHistory
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    19
		EmphasisForDifferentPackage EmphasisForModifiedBuffer
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    20
		EmphasisForObsoleteCode EmphasisForReadVariable
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
    21
		EmphasisForWrittenVariable EmphasisForChangedCode
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
    22
		LastSearchPatterns LastClassSearchBoxShowedFullName'
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    23
	poolDictionaries:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    24
	category:'Interface-Browsers'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    25
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    26
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    27
Object subclass:#BrowserHistoryEntry
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    28
	instanceVariableNames:'className meta selector'
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    29
	classVariableNames:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    30
	poolDictionaries:''
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    31
	privateIn:SystemBrowser
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    32
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
    33
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    34
!SystemBrowser class methodsFor:'documentation'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    35
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    36
copyright
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 (c) 1989 by Claus Gittinger
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
    39
              All Rights Reserved
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    40
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    41
 This software is furnished under a license and may be used
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    42
 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
    43
 inclusion of the above copyright notice.   This software may not
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    44
 be provided or otherwise made available to, or used by, any
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    45
 other person.  No title to or ownership of the software is
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    46
 hereby transferred.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    47
"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    48
!
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
documentation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    51
"
8893
27e01498c25b changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 8877
diff changeset
    52
    Notice: SystemBrowser has been completely rewritten to be an instance
16016
5a9f302b05df #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15976
diff changeset
    53
    of ApplicationModel. This rewritten version is found under Tools::NewSystemBrowser.
8893
27e01498c25b changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 8877
diff changeset
    54
    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
    55
    as an instance-less functionality provider only.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    56
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    57
    written winter 89 by claus.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    58
508
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    59
    [author:]
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    60
        Claus Gittinger
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 504
diff changeset
    61
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    62
"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    63
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    64
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    65
!SystemBrowser class methodsFor:'initialization'!
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    66
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    67
initialize
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    68
    "Browser configuration;
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    69
     (values can be changed from your private startup file)"
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
    70
254
8258536e5bcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
    71
"/    self classResources.
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    72
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    73
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    74
     setting this to false, the removeClass function will remove
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    75
     classes WITHOUT checking for instances. Otherwise,
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    76
     it will check and let you confirm in case there are instances.
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    77
     Checking for instances may be a bit time consuming, though.
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    78
     The default is true - therefore, it will check
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    79
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    80
    CheckForInstancesWhenRemovingClasses := true
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    81
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    82
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    83
     CheckForInstancesWhenRemovingClasses := true
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    84
     CheckForInstancesWhenRemovingClasses := false
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    85
85
d9713a3ca092 *** empty log message ***
claus
parents: 77
diff changeset
    86
     SystemBrowser initialize
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    87
    "
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    88
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
    89
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
    90
!SystemBrowser class methodsFor:'instance creation'!
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
    91
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    92
open
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    93
    "launch a standard browser"
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
    94
2631
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    95
    self == SystemBrowser ifFalse:[
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    96
        ^ super open
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    97
    ].
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
    98
105
claus
parents: 100
diff changeset
    99
    ^ self openOnDevice:(Screen current) 
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
   100
93
claus
parents: 90
diff changeset
   101
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   102
     SystemBrowser default open
93
claus
parents: 90
diff changeset
   103
     SystemBrowser open
claus
parents: 90
diff changeset
   104
    "
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   105
!
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   106
523
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   107
openInClass:aClass
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   108
    "launch a standard browser which immediately switches
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   109
     to aClass"
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   110
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   111
    ^ self openInClass:aClass selector:nil
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
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   114
     SystemBrowser default openInClass:Object
523
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   115
     SystemBrowser openInClass:Object
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   116
    "
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   117
db2c1ad12524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   118
    "Created: 30.4.1996 / 14:43:45 / cg"
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
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   121
openInClass:aClass selector:aSelector
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   122
    "launch a standard browser which immediately switches
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
   123
     to aClass » aSelector. Returns the browser"
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   124
3626
abf84bdbfdb2 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 3621
diff changeset
   125
    |brwsr classesName|
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   126
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   127
    brwsr := self openOnDevice:(Screen current).
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   128
    brwsr waitUntilVisible.
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   129
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   130
    aClass notNil ifTrue:[
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   131
"/        cls := aClass.
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   132
"/        cls isMeta ifTrue:[
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   133
"/            cls := aClass soleInstance
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   134
"/        ].
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   135
        aClass isMeta ifTrue:[
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   136
            brwsr instanceProtocol:false
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   137
        ].
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   138
        aClass isJavaClass ifTrue:[
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   139
            classesName := aClass fullName. 
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   140
        ] ifFalse:[
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   141
            classesName := aClass name. 
1931
03de5c5f4402 care for javaClass in #openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 1919
diff changeset
   142
        ].
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   143
        brwsr switchToClassNamed:classesName.
1681
b209bdfbf762 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   144
        brwsr classSelectionChanged.
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   145
        aSelector notNil ifTrue:[
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   146
            brwsr switchToMethodNamed:aSelector.
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   147
        ]
194
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   148
    ].
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   149
    ^ brwsr
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
    "
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   152
     SystemBrowser openInClass:Object selector:#at:put:
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   153
     SystemBrowser openInClass:Object selector:nil
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   154
     SystemBrowser openInClass:nil selector:nil
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   155
    "
93155825c7a0 added openInClass:selector:
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
   156
1561
102b90f99e58 avoid double-redraw
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   157
    "Created: / 22.11.1995 / 21:04:50 / cg"
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
   158
    "Modified: / 5.11.2001 / 16:51:02 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   159
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   160
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   161
openOn:anEnvironment
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   162
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   163
        openOn:anEnvironment
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   164
        label:(self classResources string:'System Browser')
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   165
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   166
    "
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   167
     SystemBrowser default openOn:Smalltalk
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   168
     SystemBrowser default openOn:Demos
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   169
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   170
     SystemBrowser openOn:Smalltalk
3589
f38e59e3ab76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3588
diff changeset
   171
     SystemBrowser openOn:Demos
3588
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   172
    "
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   173
!
3a8e5e30a92a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3573
diff changeset
   174
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   175
openOn:aClassEnvironment label:title
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   176
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   177
        openOn:aClassEnvironment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   178
        label:title 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   179
        onDevice:(Screen current)
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   180
!
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   181
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   182
openOn:aClassEnvironment label:title onDevice:aDisplayDevice
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   183
    |browser|
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   184
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   185
    browser := self 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   186
                newWithLabel:title
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   187
                setupBlock:[:browser | browser environment:aClassEnvironment.
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   188
                                       browser setupForAll]
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   189
                onDevice:aDisplayDevice.
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   190
    ^ browser
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
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   193
openOnDevice:aDisplay
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   194
    "launch a standard browser on another display."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   195
2631
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   196
    self == SystemBrowser ifFalse:[
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   197
        ^ super openOnDevice:aDisplay
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   198
    ].
bd18074649ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
   199
3519
0fef57de776a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   200
    ^ self 
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   201
        openOn:Smalltalk
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   202
        label:(self classResources string:'System Browser')
3519
0fef57de776a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   203
        onDevice:aDisplay
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   204
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   205
    "|d|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   206
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   207
     d := XWorkstation new initializeFor:'porty:0'.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   208
     d startDispatch.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   209
     SystemBrowser openOnDevice:d
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
   210
    "
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   211
!
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   212
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   213
openOnRemoteImageOnHost:aHostName port:portOrNil
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   214
    |environment|
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   215
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   216
    environment := RemoteImage onHost:aHostName port:portOrNil.
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   217
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   218
        openOn:environment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   219
        label:(self classResources string:'RemoteImage Browser - %1' with:aHostName)
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   220
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   221
    "
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   222
     SystemBrowser openOnRemoteImageOnHost:'funkfix' port:nil
7998
0c63e8647d1f comment
Claus Gittinger <cg@exept.de>
parents: 7992
diff changeset
   223
     SystemBrowser openOnRemoteImageOnHost:'192.168.8.1' port:nil
3573
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   224
    "
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   225
!
cc8a6cf4520a + openOnRemoteImage
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   226
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   227
openOnSnapShotImage:anImageFileName
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   228
    |environment|
2818
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   229
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   230
    environment := SnapShotImage for:anImageFileName.
4921
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   231
    ^ self
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   232
        openOn:environment 
cd47f919e8f9 openOn: protocols
Claus Gittinger <cg@exept.de>
parents: 4909
diff changeset
   233
        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
   234
27ff722f6c45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   235
    "
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
   236
     SystemBrowser openOnSnapShotImage:('/tmp/stmeas.img')
2824
85795055a3bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
   237
    "
85795055a3bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2822
diff changeset
   238
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
   239
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   240
!SystemBrowser class methodsFor:'Compatibility-ST80'!
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   241
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   242
newOnClass:aClass
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   243
    ^ self browseClass:aClass
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   244
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   245
    "Created: / 27.10.1997 / 20:10:39 / cg"
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   246
! !
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
   247
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   248
!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
   249
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   250
addToHistory:aClass selector:aSelectorOrNil
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   251
    |newEntry oldEntry classHistory|
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   252
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   253
    (newEntry := self historyEntryForClass:aClass selector:aSelectorOrNil) isNil ifTrue:[^ self].
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   254
    classHistory := self classHistory.
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   255
10173
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   256
    oldEntry := classHistory detect:[:entry | (entry className = newEntry className) 
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   257
                                              "and:[entry selector = newEntry selector]"] ifNone:nil.
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   258
    oldEntry notNil ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   259
        classHistory removeIdentical:oldEntry.
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   260
    ].
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   261
    classHistory addFirst:newEntry.
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   262
    classHistory size > self visitedHistoryMaxSize ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   263
        classHistory removeLast
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   264
    ].
7524
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   265
    SystemBrowser changed:#visitedClassHistory with:classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   266
10173
ed7cc5e574cb comment/format in: #addToHistory:selector:
Claus Gittinger <cg@exept.de>
parents: 10048
diff changeset
   267
    "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
   268
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   269
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   270
checkClassHistory
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   271
    "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
   272
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   273
    "/ 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
   274
    self classHistory reverseDo:[:histEntry|
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   275
        (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
   276
        ifFalse:[
10346
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   277
            self classHistory removeIdentical: histEntry
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   278
        ]
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   279
    ]
10346
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   280
560fea0fd857 changed: #checkClassHistory
Claus Gittinger <cg@exept.de>
parents: 10327
diff changeset
   281
    "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
   282
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   283
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   284
classHistory
3679
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   285
    ClassHistory isNil ifTrue:[
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   286
        ClassHistory := List new
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   287
    ].
102d85a9efbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   288
    ^ ClassHistory 
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   289
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   290
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   291
classHistory:newCollection
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   292
    ClassHistory := newCollection
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   293
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   294
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   295
emptyClassHistory
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   296
    "removes all class history entries"
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   297
7524
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   298
    |classHistory|
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   299
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   300
    classHistory := self classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   301
    classHistory removeAll.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   302
    SystemBrowser changed:#visitedClassHistory with:classHistory.
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   303
0257265ae6b7 do not make dependent on the history-list;
Claus Gittinger <cg@exept.de>
parents: 7395
diff changeset
   304
    "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
   305
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   306
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   307
historyEntryForClass:aClass selector:aSelectorOrNil
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   308
    |newEntry meta cls|
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
    aClass isBehavior ifFalse:[^ nil].
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   311
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   312
    (meta := aClass isMeta) ifTrue:[
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   313
        cls := aClass theNonMetaclass.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   314
    ] ifFalse:[
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   315
        cls := aClass
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   316
    ].
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   317
    newEntry := BrowserHistoryEntry new.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   318
    newEntry 
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   319
        className:cls name
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   320
        meta:meta
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
   321
        selector:aSelectorOrNil.
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   322
    ^ newEntry
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   323
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   324
    "Modified: / 24.2.2000 / 18:03:52 / cg"
9189
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   325
!
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   326
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   327
lastSearchPatterns
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   328
    ^ LastSearchPatterns
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   329
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   330
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   331
rememberSearchPattern:aString
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   332
    LastSearchPatterns isNil ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   333
        LastSearchPatterns := OrderedCollection new.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   334
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   335
    (LastSearchPatterns includes:aString) ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   336
        LastSearchPatterns remove:aString.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   337
    ] ifFalse:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   338
        LastSearchPatterns size > 20 ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   339
            LastSearchPatterns removeFirst
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   340
        ]
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   341
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   342
    LastSearchPatterns addFirst:aString.
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   343
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   344
    "Modified: / 24-11-2010 / 12:51:31 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   345
    "Created: / 14-02-2012 / 14:00:24 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   346
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
   347
9189
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   348
visitedClassNamesHistory
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   349
    ^ self classHistory
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   350
        collect:[:e | e className]
9f57319e21ca added: #visitedClassNamesHistory
Claus Gittinger <cg@exept.de>
parents: 9157
diff changeset
   351
        thenSelect:[:nm | nm notEmptyOrNil]
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   352
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   353
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   354
     Tools::NewSystemBrowser visitedClassNamesHistory
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
   355
    "
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   356
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   357
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   358
!SystemBrowser class methodsFor:'defaults'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   359
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   360
classHistoryMaxLevels
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   361
    ^ 3
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   362
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   363
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   364
classHistoryMaxSize
12954
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   365
    "returns maximum size of the visited class history"
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   366
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   367
    Screen current height < 768 ifTrue:[
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   368
        ^ 15
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   369
    ].
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   370
    ^ 20 "/ 15
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   371
bb8d0ae1c21d class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12866
diff changeset
   372
    "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
   373
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   374
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   375
default
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   376
    "convenient getter for the user's preference.
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   377
     Returns his choice of browser class"
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   378
15940
3562f909a860 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 15831
diff changeset
   379
    ^ UserPreferences systemBrowserClass
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   380
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   381
    "   
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   382
     SystemBrowser default open
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   383
    "
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   384
!
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
   385
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   386
largeLabelFont
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   387
    ^ Label defaultFont scaled:1.2.
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   388
!
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
   389
3549
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   390
methodTemplate
8877
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   391
    "return a method definition template string or nil"
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   392
bb432153d321 changed: #methodTemplate
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   393
    ^ SmalltalkLanguage instance methodTemplate
3549
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   394
!
056bd76b5b0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3519
diff changeset
   395
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   396
visitedHistoryMaxSize
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   397
    "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
   398
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   399
    ^ 15
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   400
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
   401
4909
e6b77dc6942e category
Claus Gittinger <cg@exept.de>
parents: 4860
diff changeset
   402
!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
   403
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   404
emphasisForChangedCode
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   405
    ^ UserPreferences current emphasisForChangedCode.
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   406
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   407
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   408
     EmphasisForChangedCode := #underwave
4112
ed7af6707ad7 emphasisForChangedCode
tm
parents: 3834
diff changeset
   409
     EmphasisForChangedCode := #color->Color blue
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   410
     EmphasisForChangedCode := #color->Color red lightened lightened lightened
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   411
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   412
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   413
    "Created: / 31.10.2001 / 10:15:33 / cg"
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   414
!
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   415
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   416
emphasisForChangedCode:anEmphasis
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   417
    EmphasisForChangedCode := anEmphasis
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   418
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   419
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   420
     self emphasisForChangedCode:#underwave
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   421
     self emphasisForChangedCode:(#color->Color red lightened lightened lightened)
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   422
    "
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   423
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   424
    "Created: / 31.10.2001 / 10:15:44 / cg"
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   425
!
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   426
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   427
emphasisForDifferentPackage
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   428
    ^ 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
   429
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   430
    "
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   431
     EmphasisForDifferentPackage := nil.
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   432
     EmphasisForDifferentPackage := #underwave
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   433
     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
   434
    "
3352
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   435
fd047f6a8c9f +empForChangedCode
Claus Gittinger <cg@exept.de>
parents: 3314
diff changeset
   436
    "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
   437
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   438
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   439
emphasisForDifferentPackage:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   440
    EmphasisForDifferentPackage := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   441
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   442
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   443
     self emphasisForDifferentPackage:#underwave
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   444
     self emphasisForDifferentPackage:(#color->Color red lightened lightened lightened)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   445
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   446
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   447
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   448
emphasisForModifiedBuffer
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   449
    ^ 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
   450
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   451
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   452
emphasisForModifiedBuffer:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   453
    EmphasisForModifiedBuffer := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   454
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   455
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   456
emphasisForObsoleteCode
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   457
    ^ 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
   458
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   459
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   460
emphasisForObsoleteCode:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   461
    EmphasisForObsoleteCode := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   462
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   463
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   464
emphasisForReadVariable
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   465
    ^ 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
   466
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   467
    "
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   468
     EmphasisForReadVariable := #underline
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   469
     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
   470
    "
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   471
!
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   472
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   473
emphasisForReadVariable:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   474
    EmphasisForReadVariable := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   475
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   476
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   477
     self emphasisForReadVariable:#underline
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   478
     self emphasisForReadVariable:(Array with:#underline with:#underlineColor->Color yellow)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   479
    "
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   480
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   481
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   482
emphasisForWrittenVariable
4499
395d7282b2f0 emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 4490
diff changeset
   483
    ^ 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
   484
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
     EmphasisForWrittenVariable := #underline
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   487
     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
   488
    "
3241
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   489
!
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   490
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   491
emphasisForWrittenVariable:anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   492
    EmphasisForWrittenVariable := anEmphasis
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   493
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
     self emphasisForWrittenVariable:#underline
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   496
     self emphasisForWrittenVariable:(Array with:#underline with:#underlineColor->Color red lightened)
caf04eb8c500 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   497
    "
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   498
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   499
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   500
iconForClass:aClass
14103
288c15c69753 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13947
diff changeset
   501
    "ask the class for its browser symbol; 
288c15c69753 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13947
diff changeset
   502
     that's a key/selector in the ToolbarIconLibrary"
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   503
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   504
    aClass withAllSuperclassesDo:[:eachCls |
15540
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   505
        |icon iconSymbol |
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   506
15565
e6512d88f1ab class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15540
diff changeset
   507
        icon := [ eachCls toolListIcon ] on:Error do:[].
15540
49f2e8662059 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15513
diff changeset
   508
        icon notNil ifTrue:[^ icon ].
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   509
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   510
        iconSymbol := eachCls iconInBrowserSymbol.
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   511
        iconSymbol notNil ifTrue:[
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   512
            ^ ToolbarIconLibrary perform:iconSymbol
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   513
        ].
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   514
    ].
15944
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   515
    (aClass isUtilityClass) ifTrue:[
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   516
        ^ ToolbarIconLibrary utilityClassIcon
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   517
    ].
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   518
    (aClass isAbstract) ifTrue:[
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   519
        ^ ToolbarIconLibrary abstractClassIcon
a70fb091c054 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15940
diff changeset
   520
    ].
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   521
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   522
    ^ nil
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   523
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   524
    "Created: / 17-08-2006 / 09:11:27 / cg"
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   525
    "Modified: / 20-07-2007 / 09:01:43 / cg"
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   526
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   527
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   528
resourceIconForMethod:aMethod
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   529
    |resources|
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   530
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   531
    (resources := aMethod resources) isNil ifTrue:[^ nil].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   532
18302
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   533
    (resources includesKey:#todo) ifTrue:[
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   534
        ^ ToolbarIconLibrary underConstructionIcon11x11
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   535
    ].
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   536
    (resources includesKey:#obsolete) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   537
        ^ self deprecatedMethodIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   538
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   539
    (resources includesKey:#canvas) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   540
        ^ self canvasIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   541
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   542
    (resources includesKey:#menu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   543
        ^ self menuIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   544
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   545
    (resources includesKey:#image) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   546
        ^ self imageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   547
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   548
    (resources includesKey:#fileImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   549
        ^ self fileImageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   550
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   551
    (resources includesKey:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   552
        ^ self programImageIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   553
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   554
    (resources includesKey:#help) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   555
        ^ self helpIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   556
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   557
    (resources includesKey:#programMenu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   558
        ^ self programMenuIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   559
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   560
    (resources includesKey:#tableColumns) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   561
        ^ self tableColumnsIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   562
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   563
    (resources includesKey:#tabList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   564
        ^ self tabListIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   565
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   566
    (resources includesKey:#hierarchicalList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   567
        ^ self hierarchicalListIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   568
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   569
    (resources includesKey:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   570
        ^ self programImageIcon 
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   571
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   572
    ^ nil
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   573
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   574
    "Created: / 17-08-2006 / 09:08:11 / cg"
18302
f26de4356e72 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18294
diff changeset
   575
    "Modified: / 28-07-2018 / 11:10:25 / Claus Gittinger"
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   576
! !
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   577
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   578
!SystemBrowser class methodsFor:'dialogs'!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   579
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   580
askForClassNameMatching:matchStringArg inEnvironment:anEnvironmentOrClassOrNil for:aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   581
    "open a dialog to ask for a class name.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   582
     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
   583
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   584
    |classNames caselessMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   585
     substringMatchingNames caselessSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   586
     caselessWithoutPrefixSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   587
     lcMatchString subMatch lcSubMatch box className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   588
     needSearch cls env searchBlock searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   589
     idx pref aMatchString allNames sortedBySpellingDistance msg resources|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   590
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   591
    resources := self classResources.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   592
    env := anEnvironmentOrClassOrNil ? Smalltalk.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   593
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   594
    aMatchString := matchStringArg.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   595
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   596
    "/ 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
   597
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   598
    (aMatchString includesString:'::') ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   599
        "/ pref := aMatchString upTo:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   600
        idx := aMatchString lastIndexOf:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   601
        pref := aMatchString copyTo:idx-2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   602
        pref includesMatchCharacters ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   603
            "/ search all in Smalltalk
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   604
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   605
            cls := Smalltalk at:pref asSymbol ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   606
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   607
                env := cls.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   608
                aMatchString := aMatchString copyFrom:pref size + 1 + 2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   609
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   610
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   611
    ].
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
    classNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   614
    caselessMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   615
    substringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   616
    caselessSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   617
    caselessWithoutPrefixSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   618
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   619
    lcMatchString := aMatchString asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   620
    needSearch := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   621
    aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   622
        subMatch := '*' , aMatchString , '*'.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   623
        lcSubMatch := subMatch asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   624
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   625
        "/ 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
   626
        className := aMatchString asSymbolIfInterned.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   627
        className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   628
            env isNameSpace ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   629
                cls := env at:className ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   630
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   631
                cls := env privateClassesAt:className.
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
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   634
                needSearch := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   635
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   636
        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   637
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   638
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   639
    needSearch ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   640
        searchBlock := [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   641
            |thisName|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   642
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   643
            "/ use dotted names for java
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   644
            aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   645
                thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   646
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   647
                thisName := aClass name
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   648
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   649
            (lcMatchString match:aClass name asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   650
                caselessWithoutPrefixSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   651
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   652
            aClass nameWithoutPrefix ~= aClass name ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   653
                (lcMatchString match:aClass nameWithoutPrefix asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   654
                    caselessWithoutPrefixSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   655
                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   656
            ].
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
            (aMatchString match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   659
                classNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   660
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   661
                (lcMatchString match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   662
                    caselessMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   663
                ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   664
                    subMatch notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   665
                        (subMatch match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   666
                            substringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   667
                        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   668
                            (lcSubMatch match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   669
                                caselessSubstringMatchingNames add:thisName
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
                        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   672
                    ]
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
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   675
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   676
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   677
        (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   678
            env allClassesDo:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   679
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   680
            env allPrivateClasses do:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   681
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   682
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   683
        sortedBySpellingDistance := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   684
        "/ if nothing matched - try caseless matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   685
        classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   686
            classNames := caselessMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   687
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   688
            "/ if nothing matched - try substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   689
            classNames size == 0 ifTrue:[
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
   690
                aMatchString isUppercaseFirst ifTrue:[
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   691
                    classNames := substringMatchingNames.
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
                "/ if nothing matched - try caseless substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   694
                classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   695
                    classNames := caselessSubstringMatchingNames.
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
                    "/ if nothing matched - try best fitting
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   698
                    classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   699
                        aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   700
                            allNames := SortedCollection sortBlock:[:a :b | a value > b value].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   701
                            searchBlock2 :=
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   702
                                [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   703
                                    |thisName dist|
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
                                    aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   706
                                        thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   707
                                    ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   708
                                        thisName := aClass name
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
                                    dist := thisName asLowercase spellAgainst:lcMatchString.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   711
                                    (thisName asLowercase startsWith:lcMatchString) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   712
                                        dist := dist + (thisName size * 10).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   713
                                    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   714
                                    allNames add:(thisName -> dist).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   715
                                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   716
                            (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   717
                                env allClassesDo:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   718
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   719
                                env allPrivateClasses do:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   720
                            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   721
                            classNames := (allNames copyTo:(allNames size min:40)) collect:[:each | each key].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   722
                            sortedBySpellingDistance := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   723
                        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   724
                    ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   725
                ]
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
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   728
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   729
        (classNames size == 0) ifTrue:[^ nil].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   730
        (classNames size == 1) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   731
            className := classNames first
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   732
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   733
            |browseButton|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   734
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   735
            sortedBySpellingDistance ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   736
                classNames := classNames asArray sort.
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
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   739
            aMatchString includesMatchCharacters ifTrue:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   740
                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
   741
            ] ifFalse:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   742
                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
   743
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   744
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   745
            box := self listBoxTitle:(resources string:msg with:matchStringArg) withCRs
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   746
                              okText:'OK'
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   747
                                list:classNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   748
            caselessWithoutPrefixSubstringMatchingNames notEmpty ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   749
                box initialText:(caselessWithoutPrefixSubstringMatchingNames first).
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
            box action:[:aString | className := aString].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   752
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   753
            browseButton := Button label:(resources string:'Browse All').
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   754
            browseButton action:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   755
                            |classes title|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   756
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   757
                            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
   758
                            classes := classNames collect:[:nm | Smalltalk classNamed:nm].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   759
                            aBrowserOrNil isNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   760
                                SystemBrowser
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   761
                                    browseClasses:classes 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   762
                                    label:title. 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   763
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   764
                                aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   765
                                    spawnClassBrowserFor:classes 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   766
                                    label:title 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   767
                                    in:#newBrowser 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   768
                                    select:false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   769
                            ].
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   770
                            box hide.
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   771
                            box closeRequest
8702
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 addButton:browseButton before:box okButton.
14502
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   774
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   775
            aMatchString isLowercaseFirst ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   776
                |browseImplementorsButton|
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   777
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   778
                browseImplementorsButton := Button label:(resources string:'Implementors').
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   779
                browseImplementorsButton 
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   780
                    action:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   781
                        aBrowserOrNil isNil ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   782
                            SystemBrowser browseImplementorsMatching:aMatchString
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   783
                        ] ifFalse:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   784
                            aBrowserOrNil
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   785
                                spawnMethodImplementorsBrowserFor:{ aMatchString } match:true in:#newBrowser.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   786
                        ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   787
                        box hide.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   788
                        box closeRequest
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   789
                     ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   790
                box addButton:browseImplementorsButton before:box okButton.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   791
            ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   792
9157
c8166dbf5a5a changed: #askForClassNameMatching:inEnvironment:for:
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   793
            box minExtent:300@250.
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 open.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   796
            (box accepted not or:[className isNil]) ifTrue:[ "/ cancel
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   797
                ^ nil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   798
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   799
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   800
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   801
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   802
    className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   803
        "/ use slashed javaName for search.
14653
0ca0460ee16b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14587
diff changeset
   804
        className := className copyReplaceAll:$. with:$/ ifNone:className.
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   805
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   806
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   807
"/    pref notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   808
"/        ^ pref , '::' , className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   809
"/    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   810
    ^ className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   811
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   812
    "Modified: / 16-10-2006 / 11:36:20 / cg"
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   813
    "Modified: / 24-05-2018 / 08:49:02 / Claus Gittinger"
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   814
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   815
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   816
listBoxTitle:title okText:okText list:aList
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   817
    "convenient method: setup a listBox & return it"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   818
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   819
    |box resources|
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
    resources := self classResources.
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
    box := ListSelectionBox
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   824
                title:(resources string:title)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   825
                okText:(resources string:okText)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   826
                action:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   827
    box list:aList.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   828
    ^ box
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   829
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   830
    "
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   831
     (self listBoxTitle:'hello world' okText:'aaa' list:#(1 2 3 4)) open
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   832
    "
8702
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
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   835
!SystemBrowser class methodsFor:'image specs'!
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   836
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   837
abstractMethodIcon
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   838
    <resource: #programImage>
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   839
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   840
    ^ ToolbarIconLibrary padLockGrayMiniIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   841
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
   842
    "Modified: / 28-07-2018 / 10:00:47 / Claus Gittinger"
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   843
!
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   844
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   845
addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   846
    <resource: #image>
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   847
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   848
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   849
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   850
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   851
    "
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   852
     self addBreakPointIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   853
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   854
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   855
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   856
    ^ Icon constantNamed:'SystemBrowser class addBreakPointIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   857
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   858
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   859
                width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   860
                height:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   861
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   862
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   863
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   864
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   865
                            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
   866
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   867
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   868
                            width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   869
                            height:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   870
                            bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   871
                                        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
   872
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   873
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   874
        ]
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   875
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   876
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   877
addBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   878
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   879
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   880
    ^ ToolbarIconLibrary addBreakPointIcon2
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   881
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   882
    "Modified: / 28-07-2018 / 09:36:24 / Claus Gittinger"
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   883
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   884
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   885
autoloadedClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   886
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   887
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   888
    ^ ToolbarIconLibrary autoloadedClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   889
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   890
    "Modified: / 20-07-2007 / 09:15:37 / cg"
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   891
!
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   892
12040
5f2202d6fbec class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 11964
diff changeset
   893
breakPointedIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   894
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   895
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   896
    ^ self lineBreakPointedIcon
12504
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   897
    "/ ^ self breakPointedIcon2
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   898
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   899
    "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
   900
!
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   901
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   902
canvasIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   903
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   904
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   905
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   906
    "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
   907
     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
   908
    "
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   909
     ImageEditor openOnClass:self andSelector:#canvasIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   910
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   911
    ^ Icon constantNamed:'SystemBrowser class canvasIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   912
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   913
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   914
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   915
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   916
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   917
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   918
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   919
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   920
                            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
   921
                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
   922
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   923
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   924
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   925
                            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
   926
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   927
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   928
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   929
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   930
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   931
containerClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   932
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   933
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   934
    ^ ToolbarIconLibrary containerClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   935
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   936
    "Modified: / 20-07-2007 / 09:14:54 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   937
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   938
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   939
defaultIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   940
    <resource: #image>
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   941
    "This resource specification was automatically generated
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   942
     by the ImageEditor of ST/X."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   943
    "Do not manually edit this!! If it is corrupted,
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   944
     the ImageEditor may not be able to read the specification."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   945
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   946
     self defaultIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   947
     ImageEditor openOnClass:self andSelector:#defaultIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   948
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   949
    ^ Icon constantNamed:'SystemBrowser class defaultIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   950
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   951
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   952
                width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   953
                height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   954
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   955
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   956
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   957
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   958
                            fromPackedString:'
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   959
@@@@@@@@@@@@@@@@@@@FY&Y&Y&X0@@@@@@@@@@YDQDQDQB@@@@@@@@@@A$QDQDQDH@@@@@@@@@@CH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   960
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y#@@@@@F@"H"HFDQDQDQH@@@@@@@@@@@L"H"H"
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   961
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
   962
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@B@B@ @@H@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   963
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@H@@ @@@@Hb');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   964
                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
   965
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   966
                            width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   967
                            height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   968
                            bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   969
                                        fromPackedString:'
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   970
??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
   971
QDBD%DQ@!!OH''HHRQEABT$QPP99]7\@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   972
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   973
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   974
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   975
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   976
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   977
deprecatedMethodIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   978
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   979
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   980
    ^ self doNotEnterIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   981
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
   982
    "Modified: / 28-07-2018 / 09:36:00 / Claus Gittinger"
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   983
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   984
16893
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   985
disabledBreakpointIcon
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   986
    <resource: #programImage>
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   987
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   988
    ^ ToolbarIconLibrary breakpointDisabled9x9
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   989
!
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   990
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   991
doNotEnterIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   992
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   993
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   994
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   995
    "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
   996
     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
   997
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   998
     self doNotEnterIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   999
     ImageEditor openOnClass:self andSelector:#doNotEnterIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1000
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1001
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1002
    ^ Icon constantNamed:'SystemBrowser class doNotEnterIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1003
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1004
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1005
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1006
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1007
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1008
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1009
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1010
                bits:(ByteArray fromPackedString:'??C0<NA00CB@EY>P''9B@DL@08GC0<@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1011
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1012
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1013
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1014
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1015
                            bits:(ByteArray fromPackedString:'@@@O@A>@O<A?8G? _>A?8C?@G8@O@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1016
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1017
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1018
        ]
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
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1750
packageIcon
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1751
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1752
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1753
    ^ ToolbarIconLibrary packageIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1754
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1755
    "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
  1756
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1757
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1758
packageIconGraySmall
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
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1761
    ^ ToolbarIconLibrary smallGrayPackageIcon
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1762
!
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1763
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1764
packageIconGreenSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1765
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1766
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1767
    ^ ToolbarIconLibrary smallGreenPackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1768
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1769
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1770
packageIconOrangeSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1771
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1772
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1773
    ^ ToolbarIconLibrary smallOrangePackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1774
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1775
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1776
packageIconSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1777
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1778
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1779
    ^ ToolbarIconLibrary smallYellowPackageIcon
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1780
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1781
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1782
padLockBlackMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1783
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1784
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1785
    ^ ToolbarIconLibrary padLockBlackMiniIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1786
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1787
    "Modified: / 28-07-2018 / 10:00:43 / Claus Gittinger"
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1788
!
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1789
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1790
padLockBlueMiniIcon
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
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1793
    ^ ToolbarIconLibrary padLockBlueMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1794
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1795
    "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
  1796
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1797
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1798
padLockGrayMiniIcon
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 padLockGrayMiniIcon
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:51 / 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
padLockGreenMiniIcon
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 padLockGreenMiniIcon
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:58 / 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
padLockRedMiniIcon
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 padLockRedMiniIcon
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:33:57 / 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
privateMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1823
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
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:34:42 / 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
programImageIcon
18294
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1831
    <resource: #programImage>
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1832
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1833
    ^ ToolbarIconLibrary programImageIcon
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1834
c3e05f350239 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 18283
diff changeset
  1835
    "Modified: / 28-07-2018 / 09:43:41 / Claus Gittinger"
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1836
!
2743
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
programMenuIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1839
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1840
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1841
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1842
    "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
  1843
     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
  1844
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1845
     self programMenuIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1846
     ImageEditor openOnClass:self andSelector:#programMenuIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1847
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1848
    ^ Icon constantNamed:#'SystemBrowser class programMenuIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1849
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1850
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1851
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1852
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1853
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1854
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1855
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1856
                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
  1857
                colorMapFromArray:#[ 0 0 0 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1858
                mask:((ImageMask 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
                            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
  1862
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1863
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1864
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1865
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1866
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1867
protectedMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1868
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1869
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1870
    ^ ToolbarIconLibrary padLockGreenMiniIcon
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1871
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1872
    "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
  1873
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1874
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1875
queryClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1876
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1877
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1878
    ^ ToolbarIconLibrary queryClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1879
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1880
    "Modified: / 20-07-2007 / 09:10:32 / cg"
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1881
!
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1882
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1883
redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1884
    <resource: #image>
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1885
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1886
     by the ImageEditor of ST/X."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1887
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1888
     the ImageEditor may not be able to read the specification."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1889
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1890
     self redCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1891
     ImageEditor openOnClass:self andSelector:#redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1892
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1893
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1894
    ^ Icon constantNamed:#'SystemBrowser class redCheckIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1895
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1896
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1897
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1898
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1899
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1900
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1901
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1902
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1903
                            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
  1904
                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
  1905
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1906
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1907
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1908
                            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
  1909
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1910
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1911
        ]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1912
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1913
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1914
redThumbDownIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1915
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1916
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1917
    ^ ToolbarIconLibrary redThumbDownIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1918
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1919
    "Modified: / 17-07-2011 / 10:04:37 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1920
    "Modified: / 28-07-2018 / 09:37:09 / Claus Gittinger"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1921
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1922
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1923
redThumbDownSmallIcon
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1924
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1925
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1926
    ^ ToolbarIconLibrary redThumbDownSmallIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1927
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1928
    "Modified: / 17-07-2011 / 10:05:09 / cg"
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1929
    "Modified: / 28-07-2018 / 09:37:04 / Claus Gittinger"
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1930
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1931
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1932
removeBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1933
    <resource: #programImage>
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1934
15362
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1935
    UserPreferences current useColorsForColorBlindness ifTrue:[
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1936
        ^ ToolbarIconLibrary removeBreakPointBlueIcon2
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1937
    ].
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1938
    ^ ToolbarIconLibrary removeBreakPointIcon2
18283
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1939
2df6fdc3f068 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18157
diff changeset
  1940
    "Modified: / 28-07-2018 / 09:36:57 / Claus Gittinger"
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1941
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1942
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1943
small_methodEmptyInheritedIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1944
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1945
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1946
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1947
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1948
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1949
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1950
     self small_methodEmptyInheritedIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1951
     ImageEditor openOnClass:self andSelector:#small_methodEmptyInheritedIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1952
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1953
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1954
        constantNamed:#'SystemBrowser class small_methodEmptyInheritedIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1955
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1956
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1957
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1958
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1959
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1960
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1961
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1962
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1963
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1964
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1965
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1966
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1967
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1968
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1969
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1970
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1971
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1972
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1973
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1974
small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1975
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1976
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1977
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1978
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1979
     the ImageEditor may not be able to read the specification."
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
     self small_methodInheritedFromAboveAndRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1982
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1983
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1984
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1985
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1986
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1987
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1988
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1989
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1990
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1991
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1992
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1993
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1994
                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
  1995
                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
  1996
                mask:((ImageMask 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
                            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
  2000
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2001
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2002
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2003
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2004
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2005
small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2006
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2007
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2008
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2009
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2010
     the ImageEditor may not be able to read the specification."
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
     self small_methodInheritedFromAboveIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2013
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2014
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2015
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2016
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2017
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2018
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2019
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2020
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2021
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2022
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2023
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2024
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2025
                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
  2026
                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
  2027
                mask:((ImageMask 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
                            bits:(ByteArray fromPackedString:'\GC8>O @@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2031
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2032
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2033
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2034
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2035
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2036
small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2037
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2038
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2039
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2040
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2041
     the ImageEditor may not be able to read the specification."
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
     self small_methodRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2044
     ImageEditor openOnClass:self andSelector:#small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2045
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2046
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2047
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2048
        constantNamed:#'SystemBrowser class small_methodRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2049
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2050
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2051
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2052
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2053
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2054
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2055
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2056
                bits:(ByteArray fromPackedString:'@@D@@@@@@@@@@@@@@@4UBHR@A@@"@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2057
                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
  2058
                mask:((ImageMask 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
                            bits:(ByteArray fromPackedString:'@@@@@@@@>O#8\G@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2062
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2063
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2064
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2065
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2066
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2067
startableClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2068
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2069
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2070
    ^ ToolbarIconLibrary startableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2071
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2072
    "Created: / 05-11-2001 / 09:50:16 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2073
    "Modified: / 20-07-2007 / 09:09:40 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2074
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2075
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2076
startableVisualAppIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2077
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2078
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2079
    ^ ToolbarIconLibrary visualStartableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2080
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2081
    "Created: / 05-11-2001 / 09:49:00 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2082
    "Modified: / 20-07-2007 / 09:08:34 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2083
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2084
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2085
stopIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2086
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2087
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2088
    ^ self fullBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2089
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2090
    "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
  2091
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2092
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2093
tabListIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2094
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2095
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2096
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2097
    "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
  2098
     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
  2099
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2100
     self tabListIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2101
     ImageEditor openOnClass:self andSelector:#tabListIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2102
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2103
    ^ Icon constantNamed:#'SystemBrowser class tabListIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2104
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2105
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2106
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2107
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2108
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2109
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2110
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2111
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2112
                            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
  2113
                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
  2114
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2115
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2116
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2117
                            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
  2118
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2119
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2120
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2121
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2122
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2123
tableColumnsIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2124
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2125
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2126
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2127
    "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
  2128
     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
  2129
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2130
     self tableColumnsIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2131
     ImageEditor openOnClass:self andSelector:#tableColumnsIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2132
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2133
    ^ Icon constantNamed:#'SystemBrowser class tableColumnsIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2134
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2135
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2136
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2137
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2138
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2139
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2140
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2141
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2142
                            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
  2143
                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
  2144
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2145
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2146
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2147
                            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
  2148
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2149
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2150
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2151
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2152
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2153
testCaseClassIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2154
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2155
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2156
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2157
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2158
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2159
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2160
testCaseClassIconFor:cls
4167
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2161
    <resource: #programImage>
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2162
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2163
    "/ decision moved to TestCase - see there.
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
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2166
    |lastResult|
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2167
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2168
    lastResult := cls lastTestRunResultOrNil.
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2169
    lastResult notNil ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2170
        lastResult == TestResult statePass ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2171
            ^ self testCasePassedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2172
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2173
        lastResult == TestResult stateFail ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2174
            ^ self testCaseFailedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2175
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2176
        lastResult == TestResult stateError ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2177
            ^ self testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2178
        ].
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2179
    ].
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2180
    ^ self testCaseUnknownResultIcon
6848
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2181
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2182
    "Modified: / 06-08-2006 / 11:14:12 / cg"
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2183
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2184
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2185
testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2186
    <resource: #programImage>
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2187
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2188
    "/ only left here for backward compatibility...
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2189
    ^ ToolbarIconLibrary testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2190
!
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2191
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2192
testCaseFailedIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2193
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2194
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2195
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2196
    ^ ToolbarIconLibrary testCaseFailedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2197
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2198
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2199
testCasePassedIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2200
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2201
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2202
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2203
    ^ ToolbarIconLibrary testCasePassedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2204
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2205
12631
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2206
testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2207
    <resource: #programImage>
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2208
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2209
    "/ only left here for backward compatibility...
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2210
    ^ ToolbarIconLibrary testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2211
!
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2212
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2213
testCaseUnknownResultIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2214
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2215
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2216
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2217
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2218
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2219
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2220
timeIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2221
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2222
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2223
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2224
    "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
  2225
     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
  2226
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2227
     self timeIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2228
     ImageEditor openOnClass:self andSelector:#timeIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2229
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2230
    ^ Icon constantNamed:#'SystemBrowser class timeIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2231
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2232
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2233
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2234
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2235
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2236
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2237
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2238
                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
  2239
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2240
                mask:((ImageMask 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
                            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
  2244
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2245
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2246
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2247
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2248
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2249
traceIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2250
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2251
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2252
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2253
    "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
  2254
     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
  2255
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2256
     self traceIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2257
     ImageEditor openOnClass:self andSelector:#traceIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2258
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2259
    ^ Icon constantNamed:#'SystemBrowser class traceIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2260
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2261
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2262
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2263
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2264
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2265
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2266
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2267
                bits:(ByteArray fromPackedString:'@@@@@@>@C8@G@@\@@ @B@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2268
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2269
                mask:((ImageMask 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
                            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
  2273
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2274
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2275
        ]
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2276
!
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2277
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2278
visualStartableClassIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2279
    <resource: #image>
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2280
    "This resource specification was automatically generated
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2281
     by the ImageEditor of ST/X."
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2282
    "Do not manually edit this!! If it is corrupted,
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2283
     the ImageEditor may not be able to read the specification."
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
     self visualStartableClassIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2286
     ImageEditor openOnClass:self andSelector:#visualStartableClassIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2287
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2288
    ^ Icon constantNamed:#'SystemBrowser class visualStartableClassIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2289
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2290
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2291
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2292
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2293
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2294
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2295
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2296
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2297
                            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
  2298
                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
  2299
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2300
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2301
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2302
                            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
  2303
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2304
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2305
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2306
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2307
    "Modified: / 5.11.2001 / 09:49:30 / cg"
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2308
!
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2309
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2310
warningClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2311
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2312
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2313
    ^ ToolbarIconLibrary warningClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2314
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2315
    "Modified: / 20-07-2007 / 09:04:39 / cg"
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2316
!
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2317
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2318
watchIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2319
    <resource: #image>
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2320
    "This resource specification was automatically generated
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2321
     by the ImageEditor of ST/X."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2322
    "Do not manually edit this!! If it is corrupted,
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2323
     the ImageEditor may not be able to read the specification."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2324
    "
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2325
     self watchIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2326
     ImageEditor openOnClass:self andSelector:#watchIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2327
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2328
    ^ Icon constantNamed:#'SystemBrowser class watchIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2329
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2330
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2331
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2332
                height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2333
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2334
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2335
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2336
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2337
                            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
  2338
                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
  2339
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2340
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2341
                            height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2342
                            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
  2343
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2344
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2345
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2346
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2347
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2348
windowClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2349
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2350
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2351
    ^ ToolbarIconLibrary windowClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2352
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2353
    "Modified: / 20-07-2007 / 09:05:57 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2354
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2355
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2356
windowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2357
    <resource: #image>
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2358
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2359
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2360
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2361
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2362
    "
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2363
     self windowIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2364
     ImageEditor openOnClass:self andSelector:#windowIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2365
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2366
    ^ Icon constantNamed:#'SystemBrowser class windowIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2367
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2368
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2369
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2370
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2371
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2372
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2373
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2374
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2375
                            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
  2376
                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
  2377
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2378
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2379
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2380
                            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
  2381
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2382
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2383
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2384
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2385
    "Created: / 5.11.2001 / 09:39:03 / cg"
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2386
! !
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  2387
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2388
!SystemBrowser class methodsFor:'interface specs'!
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2389
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2390
metaSpec
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2391
        "UIPainter new openOnClass: self andSelector: #metaSpec"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2392
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2393
        <resource: #canvas>
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2394
        ^#(#FullSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2395
                #window: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2396
                #(#WindowSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2397
                        #label: 'Unlabeled Canvas' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2398
                        #bounds: #(#Rectangle 27 249 325 334 ) ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2399
                #component: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2400
                #(#SpecCollection 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2401
                        #collection: #(
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2402
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2403
                                        #layout: #(#LayoutFrame 0 0 4 0 -1 0.575 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2404
                                        #name: #instanceSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2405
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2406
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2407
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2408
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2409
                                        #label: 'instance' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2410
                                        #select: false ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2411
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2412
                                        #layout: #(#LayoutFrame 1 0.575 4 0 -1 1 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2413
                                        #name: #classSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2414
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2415
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2416
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2417
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2418
                                        #label: 'class' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2419
                                        #select: true ) ) ) )
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2420
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2421
    "Created: / 30.10.1997 / 19:07:29 / cg"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2422
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2423
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2424
methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2425
    "This resource specification was automatically generated
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2426
     by the UIPainter of ST/X."
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2427
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2428
    "Do not manually edit this!! If it is corrupted,
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2429
     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
  2430
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2431
    "
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2432
     UIPainter new openOnClass:SystemBrowser andSelector:#methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2433
     SystemBrowser new openInterface:#methodMoveDialogSpec
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2434
    "
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2435
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2436
    <resource: #canvas>
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2437
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2438
    ^ 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2439
    #(FullSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2440
       name: methodMoveDialogSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2441
       window: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2442
      (WindowSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2443
         label: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2444
         name: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2445
         bounds: (Rectangle 0 0 387 118)
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
       component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2448
      (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2449
         collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2450
          (HorizontalPanelViewSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2451
             name: 'horizontalPanelView'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2452
             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
  2453
             level: 0
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2454
             horizontalLayout: fitSpace
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2455
             verticalLayout: center
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2456
             horizontalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2457
             verticalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2458
             component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2459
            (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2460
               collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2461
                (ActionButtonSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2462
                   label: 'cancel'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2463
                   name: 'actionButton2'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2464
                   translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2465
                   tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2466
                   model: cancel
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2467
                   extent: (Point 187 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2468
                 )
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: 'move'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2471
                   name: 'actionButton1'
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: accept
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2475
                   isDefault: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2476
                   extent: (Point 188 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2477
                 )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2478
                )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2479
              
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2480
             )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2481
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2482
          (LabelSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2483
             label: 'move current method to which class:'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2484
             name: 'label'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2485
             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
  2486
             style: largeLabelFont
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2487
             foregroundColor: (Color 0.0 0.0 0.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2488
             backgroundColor: (Color 67.0 67.0 67.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2489
             translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2490
             adjust: left
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2491
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2492
          (ComboBoxSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2493
             name: 'comboBox1'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2494
             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
  2495
             tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2496
             model: className
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2497
             comboList: classList
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2498
           )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2499
          )
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2500
        
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2501
       )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2502
     )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2503
! !
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2504
17734
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2505
!SystemBrowser class methodsFor:'private-code update'!
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2506
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2507
sourceOfMethod:mthd
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2508
    |code|
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2509
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2510
    code := mthd source.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2511
    code notNil ifTrue:[ ^ code].
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2512
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2513
    "/ wrong: even if there is no source, we
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2514
    "/ should be able to type in something and accept
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2515
    "/ self setNoAcceptAction.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2516
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2517
    (mthd sourcePosition isNil
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2518
    or:[mthd getSource isNil]) ifTrue:[
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2519
        ^ '"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2520
Sorry, but the method''s sourceCode is not available.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2521
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2522
Probably, the method''s sourceCode-info was stripped from the system.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2523
"'.
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
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2526
    ^ '"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2527
Sorry, but the method''s sourceCode is not available or corrupted.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2528
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2529
',(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
  2530
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
  2531
'] ifFalse:['']),'
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2532
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
  2533
The system searches those directories for a package-subdirectories,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2534
which should either contain the classes source file.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2535
Also, check if that directory and/or sourceFile grants read access.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2536
The packagePath can be accessed via
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2537
    Smalltalk packagePath
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2538
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2539
To fix this (in the running system), evaluate:
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2540
    Smalltalk packagePath addFirst:''<<pathOfDirContainingPackageDir>>''.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2541
    Smalltalk flushPathCaches.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2542
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2543
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
  2544
file - so you will not get this error again and again.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2545
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2546
Also, check if you have the sourceCodeManagement (CVS) enabled,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2547
and (if so) configured correctly.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2548
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2549
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
  2550
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
  2551
in the ''source'' directory.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2552
"'.
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
    "Modified: / 09-11-2017 / 08:16:28 / cg"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2555
! !
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2556
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2557
!SystemBrowser class methodsFor:'private-helpers'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2558
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2559
askForPackageChangeFrom:oldPkg to:newPkg
3626
abf84bdbfdb2 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 3621
diff changeset
  2560
    |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
  2561
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2562
    box := OptionBox 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2563
                title:
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2564
('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
  2565
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
  2566
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
  2567
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
  2568
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
  2569
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
  2570
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
  2571
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2572
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
  2573
                        bindWith:(oldPkg allBold)
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2574
                            with:(newPkg allBold))
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2575
                numberOfOptions:3.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2576
3476
685f67f7e818 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
  2577
    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
  2578
    box defaultButtonIndex:3. 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2579
    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
  2580
    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
  2581
    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
  2582
    box addVerticalSpace:10.
17043
6185cc2147c2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16893
diff changeset
  2583
    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
  2584
    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
  2585
    box resize.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2586
    box showAtPointer.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2587
    box destroy.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2588
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2589
    (answer ~~ #cancel) ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2590
        notAgain value ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2591
            Class catchMethodRedefinitions:false.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2592
        ].
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2593
    ].
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2594
    ^ answer.
11291
d4d27edd6ab4 changed: #askForPackageChangeFrom:to:
Claus Gittinger <cg@exept.de>
parents: 11271
diff changeset
  2595
17775
0bd37dc16a54 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17734
diff changeset
  2596
    "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
  2597
!
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2598
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2599
showNoneFound
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2600
    self warn:(self classResources string:'None found.').
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2601
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2602
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2603
showNoneFound:what
1620
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2604
    |rs|
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2605
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2606
    rs := self classResources.
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2607
    self information:((rs string:what) , (rs string:'...\\... none found.')) withCRs.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2608
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2609
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2610
!SystemBrowser class methodsFor:'private-instance creation'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2611
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2612
newWithLabel:aString setupBlock:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2613
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2614
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2615
    ^ self newWithLabel:aString setupBlock:aBlock onDevice:Screen current
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2616
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2617
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2618
newWithLabel:aString setupBlock:aBlock onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2619
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2620
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2621
    |newBrowser|
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2622
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2623
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2624
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2625
    aBlock value:newBrowser.
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2626
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2627
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2628
    ^ newBrowser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2629
!
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
newWithLabel:aString setupSelector:aSymbol arg:arg
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2632
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2633
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2634
    ^ self newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:Screen current 
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2635
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2636
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2637
newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2638
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2639
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2640
    |newBrowser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2641
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2642
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2643
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2644
    newBrowser perform:aSymbol with:arg.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2645
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2646
    ^ newBrowser
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
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  2649
!SystemBrowser class methodsFor:'special search startup'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2650
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2651
allCallsOn:aSelectorString
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2652
    "return a collection of methods which send aSelector.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2653
     This takes some time, because source code is parsed to see
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2654
     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
  2655
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2656
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2657
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2658
        in:(Smalltalk allClasses) 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2659
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2660
        match:false
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2661
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2662
    "
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2663
     Time millisecondsToRun:[
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2664
         SystemBrowser allCallsOn:#at:put:
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2665
     ].            
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2666
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2667
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2668
    "Created: 24.1.1997 / 19:42:57 / cg"
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
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2671
allCallsOn:aSelectorString in:aCollectionOfClasses
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2672
    "return a collection of methods which send aSelector.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2673
     Methods from classes in aCollectionOfClasses are searched only."
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2674
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2675
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2676
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2677
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2678
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2679
        match:false
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2680
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2681
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2682
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
  2683
    "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
  2684
     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
  2685
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2686
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2687
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2688
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2689
        ignoreCase:ignoreCase 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2690
        match:true
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2691
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2692
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2693
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2694
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2695
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2696
    "Modified: 18.4.1997 / 10:32:50 / cg"
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2697
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2698
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2699
allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatchArg
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2700
    "return a collection of methods which send aSelector.
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2701
     Methods from classes in aCollectionOfClasses are searched only."
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2702
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2703
    |doMatch sel searchBlock classesSearched|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2704
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2705
    doMatch := doMatchArg.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2706
    (doMatch and:[aSelectorString includesMatchCharacters not]) ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2707
        doMatch := false.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2708
    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2709
        
3471
4c4b41516d96 care for empty selector in allCallsOn.
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
  2710
    aSelectorString size == 0 ifTrue:[ ^ #() ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2711
    (doMatch or:[ignoreCase]) ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2712
        "/ 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
  2713
        sel := aSelectorString asSymbolIfInterned.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2714
        sel isNil ifTrue:[ ^ #() ].   "/ none (no such selector)
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2715
    ]. 
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2716
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2717
    classesSearched := aCollectionOfClasses.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2718
    doMatch ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2719
        "/ 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
  2720
        (aSelectorString includes:$() ifFalse:[
12831
f7fe86345bc4 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12822
diff changeset
  2721
            classesSearched := classesSearched reject:[:eachClass | eachClass theNonMetaclass isJavaClass ].
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2722
        ].
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2723
    ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2724
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2725
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
4332
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2726
    searchBlock isNil ifTrue:[
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2727
        ^ #()    "/ none (no such selector)
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2728
    ].
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2729
    ^ self allMethodsIn:classesSearched where:searchBlock
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2730
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2731
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2732
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2733
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2734
1143
0707461e582a avoid compilation of lazy methods when searching for senders
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2735
    "Modified: 18.4.1997 / 10:32:50 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2736
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2737
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2738
allMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2739
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2740
     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
  2741
     considered.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2742
     Only classes in aCollectionOfClasses are inspected in the search"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2743
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2744
    |list activePriority|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2745
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2746
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2747
     since this may take a long time, lower my priority ...
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2748
    "
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2749
    activePriority := Processor activePriority.
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  2750
    Processor activeProcess 
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2751
        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
  2752
    do:[
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2753
        |checkedClasses checkBlock detectedMethods|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2754
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2755
        checkedClasses := IdentitySet new.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2756
        list := OrderedCollection new.
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2757
        detectedMethods := IdentitySet new.
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2758
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2759
        checkBlock := [:cls |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2760
            (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
  2761
                (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2762
                    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
  2763
                ] ifFalse:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2764
                    cls methodDictionary keysAndValuesDo:[:sel :method |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2765
                        (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
  2766
                            "/ 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
  2767
                            (detectedMethods includes:method) ifFalse:[
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2768
                                list add:method.
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2769
                                detectedMethods add:method
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2770
                            ]
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2771
                        ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2772
                    ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2773
                    checkedClasses add:cls.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2774
                ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2775
            ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2776
        ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2777
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2778
        aCollectionOfClasses do:[:aClass |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2779
            "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2780
             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
  2781
             implementors or senders)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2782
            "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2783
            wantInst ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2784
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2785
                checkBlock value:aClass
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2786
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2787
            wantClass ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2788
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2789
                checkBlock value:(aClass class)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2790
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2791
            Processor yield
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
    ^ list
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2795
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2796
    "Created: / 24-01-1997 / 19:41:12 / cg"
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2797
    "Modified: / 14-03-2017 / 12:05:41 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2798
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2799
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2800
allMethodsIn:aCollectionOfClasses where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2801
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2802
     Only classes in aCollectionOfClasses are inspected in the search"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2803
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2804
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2805
        allMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2806
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2807
        class:true
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2808
        where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2809
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2810
    "Created: 24.1.1997 / 19:41:49 / cg"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2811
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2812
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2813
aproposSearch:aString
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2814
    "browse all methods, which have aString in their selector."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2815
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2816
    ^ self aproposSearch:aString in:(Smalltalk allClasses)
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  2817
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2818
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2819
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2820
aproposSearch:aString in:aCollectionOfClasses
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2821
    "browse all methods, which have aString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2822
     This is relatively slow, since all source must be processed."
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2823
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2824
    |matchString list s searchBlock browser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2825
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2826
    matchString := '*' , aString , '*'.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2827
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2828
    list := OrderedCollection new.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2829
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2830
    (aString includesMatchCharacters) ifTrue:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2831
        s := '*' , aString asLowercase , '*'.
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2832
        "a matchString"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2833
        searchBlock := [:text | (text asCollectionOfLinesfindFirst:[:line | s match:line]) ~~ 0].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2834
    ] ifFalse:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2835
        searchBlock := [:source | (source findString:aString asLowercase) ~~ 0]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2836
    ].
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2837
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2838
    browser := self browseMethodsIn:aCollectionOfClasses 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2839
                     where:[:class :method :sel |
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2840
                                |comment|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2841
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2842
                                (searchBlock value:sel asLowercase)
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2843
                           ]
2729
9af04074a4bb no direct access to super-class-instvars
Claus Gittinger <cg@exept.de>
parents: 2728
diff changeset
  2844
                     title:(self classResources string:'selectors containing: %1' with:aString).
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2845
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2846
    browser notNil ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2847
        browser autoSearch:aString 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2848
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2849
    ^ browser
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2850
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2851
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2852
     SystemBrowser aproposSearch:'append' in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2853
     SystemBrowser aproposSearch:'add'    in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2854
     SystemBrowser aproposSearch:'sort'   in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2855
     SystemBrowser aproposSearch:'[Aa]bsent' in:(Collection withAllSubclasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2856
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2857
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2858
    "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
  2859
!
6f4460d5a09d added supersend searches; offer comparing the current version with the
Claus Gittinger <cg@exept.de>
parents: 203
diff changeset
  2860
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2861
browseAllCallsOn:aSelectorString
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2862
    "launch a browser for all senders of aSelector.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2863
     Notice: better go via Smalltalk browseAllCallsOn:, which honors the tool-preferences"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2864
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2865
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2866
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2867
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2868
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2869
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2870
     SystemBrowser browseAllCallsOn:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2871
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2872
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2873
    "Created: 9.12.1995 / 18:00:41 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2874
    "Modified: 10.7.1996 / 10:26:15 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2875
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2876
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2877
browseAllCallsOn:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2878
    "launch a browser for all senders of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2879
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2880
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2881
        browseAllCallsOn:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2882
        in:aSetOfClasses
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2883
        title:(self classResources string:'Senders of: %1' with:aSelectorString)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2884
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2885
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2886
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2887
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2888
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2889
    "Created: 10.7.1996 / 10:25:49 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2890
    "Modified: 24.1.1997 / 19:49:34 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2891
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2892
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2893
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
  2894
    "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
  2895
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2896
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2897
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2898
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2899
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  2900
        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
  2901
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2902
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2903
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2904
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2905
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2906
    "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
  2907
    "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
  2908
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2909
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2910
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:match title:titleArg
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2911
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2912
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2913
    |list list2 browser selWithColon title rs|
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2914
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2915
    title := titleArg.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2916
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2917
    list := self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2918
    list isEmpty ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2919
        aSelectorString numArgs == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2920
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2921
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2922
                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
  2923
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2924
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2925
        list2 size == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2926
            self showNoneFound:title.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2927
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2928
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2929
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2930
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2931
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2932
                         (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
  2933
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2934
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2935
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2936
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2937
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2938
        title := title , ':'.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2939
    ].
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2940
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2941
    browser := self browseMethods:list title:title.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2942
    browser notNil ifTrue:[
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  2943
        |s|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2944
8139
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2945
"/        "
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  2946
"/         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
  2947
"/         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
  2948
"/        "
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2949
"/        s := aSelectorString.
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2950
"/        (s includes:$:) ifTrue:[
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2951
"/            s := s copyTo:(s indexOf:$:)
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2952
"/        ].
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2953
"/        browser autoSearch:s 
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  2954
        browser setSearchSelector:aSelectorString ignoreCase:ignoreCase doMatch:true.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2955
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2956
    ^ browser
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  2957
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2958
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2959
     SystemBrowser
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2960
        browseAllCallsOn:#+ 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2961
        in:(Number withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2962
        title:'just a test'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2963
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2964
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2965
    "Modified: / 24-01-1997 / 19:48:54 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2966
    "Created: / 14-02-2012 / 14:19:51 / cg"
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  2967
    "Modified (format): / 13-02-2017 / 20:31:46 / cg"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2968
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2969
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2970
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2971
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2972
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2973
    ^ self 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2974
        browseAllCallsOn:aSelectorString 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2975
        in:aCollectionOfClasses 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2976
        ignoreCase:ignoreCase 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2977
        match:true 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2978
        title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2979
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2980
    "
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2981
     SystemBrowser
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2982
        browseAllCallsOn:#+ 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2983
        in:(Number withAllSubclasses) 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2984
        title:'just a test'
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2985
    "
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2986
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2987
    "Modified: / 14-02-2012 / 14:20:17 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2988
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2989
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2990
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
  2991
    "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
  2992
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2993
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2994
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2995
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2996
        ignoreCase:false 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2997
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2998
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2999
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3000
     SystemBrowser
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3001
        browseAllCallsOn:#+ 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3002
        in:(Number withAllSubclasses) 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3003
        title:'just a test'
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3004
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3005
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3006
    "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
  3007
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3008
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3009
browseCallsOn:aSelectorString under:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3010
    "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
  3011
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3012
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3013
        browseAllCallsOn:aSelectorString
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3014
                      in:(aClass withAllSubclasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3015
                   title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3016
                                string:'Senders of: %1 (in and below %2)'
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3017
                                with:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3018
                                with:aClass name)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3019
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3020
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3021
     SystemBrowser browseCallsOn:#+ under:Number
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3022
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3023
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3024
    "Created: 9.12.1995 / 17:59:57 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3025
    "Modified: 24.1.1997 / 19:50:33 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3026
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3027
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3028
browseClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3029
    "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
  3030
     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
  3031
     classvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3032
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3033
    ^ self browseRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3034
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3035
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3036
browseClassRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3037
    "launch a browser for all methods in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3038
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3039
     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
  3040
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3041
    ^ self browseRefsTo:varName classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3042
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3043
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3044
browseClassRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3045
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3046
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3047
     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
  3048
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3049
    ^ self browseClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3050
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3051
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3052
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3053
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
  3054
    "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
  3055
     resource in aCollectionOfClasses.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3056
     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
  3057
     are parsed.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3058
     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
  3059
        browseForResource:#style containing:nil in:... title:...
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3060
     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
  3061
        browseForResource:#style containing:'arrowButtonDownForm' in:... title:..."
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3062
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  3063
    |browser searchBlock|
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3064
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3065
    "/ search for any resource can be done without looking
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3066
    "/ at the source ...
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3067
    (aResourceSymbol isNil and:[item isNil]) ifTrue:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3068
        searchBlock := [:class :method :s | method hasResource]
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3069
    ] ifFalse:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3070
        searchBlock := [:class :method :s |
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3071
                            |rsrc val found|
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3072
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3073
                            found := false.
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3074
                            method hasResource ifTrue:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3075
                                rsrc := method resources.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3076
                                rsrc notNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3077
                                    aResourceSymbol isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3078
                                        item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3079
                                            found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3080
                                        ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3081
                                            rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3082
                                                rsrc keysAndValuesDo:[:rsrc :val |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3083
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3084
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3085
                                                            found := item match:v printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3086
                                                        ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3087
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3088
                                                        found := item match:val printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3089
                                                    ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3090
                                                ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3091
                                            ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3092
                                                found := item match:rsrc printString
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3093
                                            ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3094
                                        ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3095
                                    ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3096
                                        (rsrc includesKey:aResourceSymbol) ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3097
                                            item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3098
                                                found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3099
                                            ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3100
                                                rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3101
                                                    val := rsrc at:aResourceSymbol.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3102
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3103
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3104
                                                            found := item match:v printString 
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3105
                                                        ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3106
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3107
                                                        found := item match:val printString 
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3108
                                                    ]
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3109
                                                ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3110
                                                    found := item match:rsrc printString
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3111
                                                ]
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3112
                                            ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3113
                                        ]
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3114
                                    ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3115
                                ].
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3116
                            ].
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3117
                            found
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3118
                       ].
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3119
    ].
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3120
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3121
    browser := self browseMethodsIn:aCollectionOfClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3122
                              where:searchBlock
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3123
                              title:title.
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3124
    browser notNil ifTrue:[
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3125
        browser autoSearch:'resource:' 
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3126
    ].
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3127
    ^ browser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3128
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3129
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3130
     SystemBrowser
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3131
        browseForResource:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3132
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3133
        title:'methods with a resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3134
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3135
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3136
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3137
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3138
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3139
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3140
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3141
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3142
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3143
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3144
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3145
        containing:'arrowButton*'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3146
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3147
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3148
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3149
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3150
    "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
  3151
!
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3152
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3153
browseForResource:aResourceSymbol in:aCollectionOfClasses title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3154
    "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
  3155
     resource in aCollectionOfClasses"
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3156
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3157
    ^ self
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3158
        browseForResource:aResourceSymbol
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3159
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3160
        in:aCollectionOfClasses 
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3161
        title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3162
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3163
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3164
     SystemBrowser
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3165
        browseForResource:#style
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3166
        in:Smalltalk allClasses
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3167
        title:'methods accessing styleSheet values'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3168
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3169
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3170
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3171
        browseForResource:#keyboard
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3172
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3173
        title:'methods handling keyboard events'
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3174
    "
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
     SystemBrowser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3177
        browseForResource:nil
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3178
        in:Smalltalk allClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3179
        title:'methods with a resource'
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3180
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3181
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3182
    "Modified: 9.1.1997 / 12:44:38 / cg"
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3183
!
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3184
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3185
browseForString:aString
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3186
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3187
    "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
  3188
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3189
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3190
    ^ self browseForString:aString in:(Smalltalk allClasses) ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3191
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3192
    "Modified: / 18.6.1998 / 16:42:39 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3193
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3194
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3195
browseForString:aString in:aCollectionOfClasses
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3196
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3197
    "launch a browser for all methods in aCollectionOfClasses  
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3198
     containing a string in their source.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3199
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3200
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3201
    ^ self
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3202
        browseForString:aString 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3203
        in:aCollectionOfClasses 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3204
        ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3205
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3206
    "
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3207
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3208
     SystemBrowser browseForString:'should'   in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3209
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3210
    "
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3211
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3212
    "Created: / 9.12.1995 / 18:03:12 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3213
    "Modified: / 18.6.1998 / 16:43:27 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3214
!
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3215
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3216
browseForString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3217
    <resource: #obsolete>
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3218
    "launch a browser for all methods in aCollectionOfClasses  
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3219
     containing a string in their source.
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3220
     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
  3221
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3222
    |browser searchBlock title s|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3223
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3224
    title := self classResources string:'Methods containing: %1' with:aString displayString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3225
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3226
    (aString includesMatchCharacters
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3227
    or:[ignoreCase]) ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3228
        s := '*' , aString , '*'.
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3229
        "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
  3230
        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
  3231
                            |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
  3232
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3233
                            src isNil ifTrue:[
2208
e077aa992f7a check for nil source in #allCallsOn: (for methods where src in not available)
Claus Gittinger <cg@exept.de>
parents: 1937
diff changeset
  3234
                                ('Browser [info]: no source for ' , m printString) infoPrintCR.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3235
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3236
                            ] ifFalse:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  3237
                                s match:src caseSensitive:ignoreCase not
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3238
                            ]
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
  3239
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3240
    ] 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
  3241
        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
  3242
                            |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
  3243
b14b3ab39af6 dont crash if searching a string in a method which has no accessable source
Claus Gittinger <cg@exept.de>
parents: 436
diff changeset
  3244
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3245
                            src isNil ifTrue:[
2208
e077aa992f7a check for nil source in #allCallsOn: (for methods where src in not available)
Claus Gittinger <cg@exept.de>
parents: 1937
diff changeset
  3246
                                ('Browser [info]: no source for ' , m printString) infoPrintCR.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3247
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3248
                            ] ifFalse:[
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3249
                                (src findString:aString) ~~ 0
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3250
                            ]
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
  3251
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3252
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3253
    browser := self browseMethodsIn:aCollectionOfClasses where:searchBlock title:title.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3254
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3255
    browser notNil ifTrue:[
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3256
        browser autoSearch:aString ignoreCase:ignoreCase
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3257
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3258
    ^ browser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3259
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3260
    "
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3261
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3262
     SystemBrowser browseForString:'should'   in:(Array with:Object)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3263
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3264
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3265
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3266
    "Created: / 18.6.1998 / 16:42:50 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3267
    "Modified: / 18.6.1998 / 16:51:25 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3268
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3269
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3270
browseForSymbol:aSymbol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3271
    "launch a browser for all methods referencing aSymbol"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3272
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3273
    ^ self 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3274
        browseForSymbol:aSymbol 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3275
        title:(self classResources string:'Users of: %1' with:aSymbol) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3276
        warnIfNone:true
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3277
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3278
    "Created: 9.12.1995 / 18:04:34 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3279
    "Modified: 10.7.1996 / 10:35:34 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3280
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3281
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3282
browseForSymbol:aSymbol in:aSetOfClasses title:title warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3283
    "launch a browser for all methods referencing aSymbol"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3284
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3285
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3286
        browseForSymbol:aSymbol 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3287
        in:aSetOfClasses 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3288
        title:title 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3289
        warnIfNone:doWarn
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3290
        searchFor:aSymbol
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3291
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3292
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3293
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
  3294
    "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
  3295
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3296
    |browser searchBlock sym|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3297
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3298
    (aSymbol includesMatchCharacters) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3299
        "a matchString"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3300
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3301
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3302
                                (aLiteral isMemberOf:Symbol) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3303
                                  and:[aSymbol match:aLiteral]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3304
                            ] ifNone:nil) notNil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3305
                       ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3306
    ] ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3307
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3308
         can do a faster search
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3309
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3310
        sym := aSymbol asSymbolIfInterned.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3311
        sym isNil ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3312
            self showNoneFound:title.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3313
            ^ nil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3314
        ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3315
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3316
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3317
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3318
                                (sym == aLiteral) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3319
                            ] ifNone:nil) notNil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3320
                       ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3321
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3322
    doWarn ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3323
        WarningSignal ignoreIn:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3324
            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
  3325
        ]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3326
    ] ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3327
        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
  3328
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3329
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3330
    (browser notNil 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3331
    and:[searchString notNil]) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3332
        browser autoSearch:searchString
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3333
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3334
    ^ browser
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3335
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3336
    "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
  3337
    "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
  3338
    "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
  3339
!
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3340
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3341
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
  3342
    "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
  3343
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3344
    |browser searchBlock|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3345
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3346
    searchBlock := self searchBlockForSymbol:aSymbol.
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3347
    searchBlock == false ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3348
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3349
        ^ nil
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3350
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3351
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3352
    WarningSignal ignoreIn:[
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3353
        InformationSignal ignoreIn:[
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3354
            browser := self browseMethodsWhere:searchBlock title:title.
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3355
        ]
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3356
    ].
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3357
    browser isNil ifTrue:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3358
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3359
        ^ 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
  3360
    ].
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3361
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3362
    (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
  3363
        browser autoSearch:searchString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3364
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3365
    ^ browser
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3366
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3367
    "Modified: / 24-06-1996 / 14:39:07 / stefan"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3368
    "Created: / 31-10-1996 / 14:45:08 / cg"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3369
    "Modified: / 22-03-2012 / 06:58:07 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3370
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3371
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3372
browseForSymbol:aSymbol title:title warnIfNone:doWarn
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3373
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3374
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3375
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3376
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3377
        title:title 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3378
        warnIfNone:doWarn 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3379
        searchFor:aSymbol
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3380
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3381
    "Modified: 31.10.1996 / 14:45:38 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3382
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3383
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3384
browseForSymbol:aSymbol title:title warnIfNone:doWarn searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3385
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3386
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3387
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3388
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3389
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3390
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3391
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3392
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3393
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3394
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3395
        ifNone:b
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3396
        searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3397
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3398
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3399
browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3400
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3401
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3402
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3403
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3404
        in:(Smalltalk allClasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3405
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3406
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3407
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3408
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3409
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3410
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3411
    "Created: / 9.12.1995 / 18:01:18 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3412
    "Modified: / 5.11.2001 / 17:31:11 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3413
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3414
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3415
browseImplementorsMatching:aSelectorString in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3416
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3417
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3418
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3419
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3420
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3421
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3422
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3423
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3424
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3425
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3426
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3427
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3428
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3429
    "Modified: / 5.11.2001 / 17:30:57 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3430
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3431
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3432
browseImplementorsMatching:aSelectorString in:aSetOfClasses ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3433
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3434
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3435
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3436
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3437
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3438
        ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3439
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3440
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3441
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3442
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3443
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3444
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3445
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3446
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3447
    "Modified: / 5.11.2001 / 17:30:43 / cg"
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
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3450
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3451
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3452
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
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
    |list|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3455
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3456
    list := self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3457
                findImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3458
                in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3459
                ignoreCase:ignoreCase.
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
    list size == 0 ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3462
        self showNoneFound:title.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3463
        ^ nil
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
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3466
    ^ self browseMethods:list asOrderedCollection title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3467
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3468
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3469
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3470
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3471
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3472
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3473
                                  title:'some implementors of +'
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
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3476
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3477
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3478
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3479
                                  title:'some implementors of +'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3480
    "
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
    "Modified: / 4.9.1995 / 17:33:39 / claus"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3483
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3484
    "Modified: / 5.11.2001 / 17:30:38 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3485
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3486
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3487
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3488
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3489
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3490
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3491
    ^ self
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3492
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3493
        in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3494
        ignoreCase:false
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3495
        title:title
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
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3498
browseImplementorsMatching:aSelectorString under:aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3499
    "launch a browser for all implementors of aSelector in aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3500
     and its subclasses"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3501
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3502
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3503
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3504
        in:(aClass withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3505
        title:(self classResources 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3506
                string:'implementors of: %1 (in and below %2)' 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3507
                with:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3508
                with:aClass name)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3509
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3510
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3511
     SystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3512
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3513
    "
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
    "Created: / 9.12.1995 / 18:06:09 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3516
    "Modified: / 5.11.2001 / 17:30:15 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3517
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3518
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3519
browseImplementorsOf:aSelectorString
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3520
    "launch a browser for all implementors of aSelector"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3521
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3522
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3523
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3524
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3525
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3526
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3527
     SystemBrowser browseImplementorsOf:#+
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3528
     NewSystemBrowser browseImplementorsOf:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3529
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3530
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3531
    "Created: / 9.12.1995 / 18:01:18 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3532
    "Modified: / 5.11.2001 / 17:31:11 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3533
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3534
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3535
browseImplementorsOf:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3536
    "launch a browser for all implementors of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3537
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3538
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3539
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3540
        in:aSetOfClasses
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
  3541
        title:(self classResources string:'Implementors of: %1' with:aSelectorString allBold)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3542
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3543
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3544
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3545
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3546
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3547
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3548
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3549
    "Modified: / 5.11.2001 / 17:30:57 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3550
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3551
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3552
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
  3553
    "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
  3554
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3555
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3556
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3557
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3558
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3559
        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
  3560
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3561
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3562
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3563
     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
  3564
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3565
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3566
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3567
    "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
  3568
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3569
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3570
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3571
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3572
     the classes contained in aCollectionOfClasses and their metaclasses"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3573
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3574
    doMatch ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3575
        self browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3576
    ] ifFalse:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3577
        self browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3578
    ].
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3579
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3580
    "Created: / 14-02-2012 / 13:55:23 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3581
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3582
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3583
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3584
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3585
     the classes contained in aCollectionOfClasses and their metaclasses"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3586
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3587
    |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
  3588
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3589
    title := titleArg.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3590
    list := self 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3591
                findImplementors:aSelectorString 
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3592
                in:aCollectionOfClasses 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3593
                ignoreCase:ignoreCase
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3594
                match:(aSelectorString includesMatchCharacters and:[aSelectorString ~= '*']).
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3595
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3596
    list size == 0 ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3597
        aSelectorString numArgs == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3598
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3599
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3600
                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
  3601
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3602
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3603
        list2 size == 0 ifTrue:[
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3604
            "/ self showNoneFound:title.
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3605
            "/ ^ self
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3606
            lcSelector := aSelectorString asLowercase.
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3607
            
8688
71d973fdd817 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8685
diff changeset
  3608
            allSelectors := Set new.
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3609
            top20 := SortedCollection new.
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3610
            top20 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3611
                sortBlock:[:a :b | 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3612
                    |isPrefixOfA isPrefixOfB aDist bDist|
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3613
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3614
                    isPrefixOfA := (a asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3615
                    isPrefixOfB := (b asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3616
                    (isPrefixOfA and:[isPrefixOfB not])
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3617
                    or:[ 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3618
                        aDist := (a spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3619
                        bDist := (b spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3620
                        (isPrefixOfA and:[isPrefixOfB and:[aDist > bDist]])     
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3621
                        or:[ isPrefixOfB not and:[ aDist > bDist ]]]
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3622
                ].
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3623
            Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3624
                ((eachSelector asLowercase startsWith:lcSelector) or:[(eachSelector spellAgainst:aSelectorString) > 50]) ifTrue:[    
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3625
                    (allSelectors includes:eachSelector) ifFalse:[
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3626
                        allSelectors add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3627
                        top20 add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3628
                        top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3629
                    ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3630
                ]
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3631
            ].
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3632
            top20 isEmpty ifTrue:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3633
                Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3634
                    (eachSelector asLowercase spellAgainst:lcSelector) > 50 ifTrue:[    
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3635
                        (allSelectors includes:eachSelector) ifFalse:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3636
                            allSelectors add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3637
                            top20 add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3638
                            top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3639
                        ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3640
                    ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3641
                ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3642
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3643
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3644
            "/ 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
  3645
            but := ''.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3646
            (globalClass := Smalltalk classNamed:aSelectorString) notNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3647
                top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',aSelectorString,' <<'); yourself.
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3648
                but := '\But there exists a class by that name.'.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3649
            ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3650
                (aSelectorString knownAsSymbol 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3651
                and:[ (global := Smalltalk at:aSelectorString asSymbol) notNil ])
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3652
                ifTrue:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3653
                    global isBehavior ifTrue:[ 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3654
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse alias ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3655
                        but := '\But there exists a global alias by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3656
                        globalClass := global
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3657
                    ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3658
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class of ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3659
                        but := '\But there exists a global by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3660
                        globalClass := global class.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3661
                    ]
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3662
                ].
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3663
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3664
            "/ 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
  3665
            but isEmpty ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3666
                globalName := Smalltalk keys  
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3667
                                detect:[:nm | (nm includesString:'::')
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3668
                                               and:[ (nm includesString:aSelectorString) 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3669
                                               and:[ (nm endsWith:('::',aSelectorString)) ]]] 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3670
                                ifNone:nil. 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3671
                globalName notNil ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3672
                    globalClass := Smalltalk at:globalName.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3673
                    globalClass isBehavior ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3674
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',globalClass name,' <<'); yourself.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3675
                        but := '\But there exists a class in some namespace by that name.'.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3676
                    ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3677
                ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3678
            ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3679
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3680
            choice := Dialog 
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3681
                choose:(title,(' - none found.',but,'\\Browse implementors of a similar selector or cancel:') withCRs)
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3682
                fromList:top20 
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3683
                lines:10.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3684
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3685
            choice notEmptyOrNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3686
                (choice startsWith:'>>') ifTrue:[
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3687
                    self openInClass:globalClass selector:nil.
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3688
                ] ifFalse:[
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3689
                    self browseImplementorsOf:choice in:aCollectionOfClasses ignoreCase:ignoreCase title:'Implementors of ',choice.
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3690
                ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3691
            ].
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3692
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3693
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3694
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3695
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3696
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3697
                         (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
  3698
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3699
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3700
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3701
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3702
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3703
        title := title , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3704
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3705
    ].
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3706
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3707
    ^ self browseMethods:list asOrderedCollection title:title
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3708
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3709
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3710
     SystemBrowser browseImplementorsOf:#+
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3711
                                     in:(Array with:Number
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3712
                                               with:Float
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3713
                                               with:SmallInteger)
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3714
                                  title:'some implementors of +'
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3715
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3716
     NewSystemBrowser browseImplementorsOf:#+
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3717
                                     in:(Array with:Number
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3718
                                               with:Float
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3719
                                               with:SmallInteger)
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3720
                                  title:'some implementors of +'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3721
    "
132
claus
parents: 118
diff changeset
  3722
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3723
    "Modified: / 04-09-1995 / 17:33:39 / claus"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3724
    "Modified: / 19-06-1996 / 14:19:02 / stefan"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3725
    "Modified: / 15-01-2011 / 14:35:56 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3726
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3727
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3728
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
  3729
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3730
     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
  3731
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3732
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3733
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3734
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3735
        ignoreCase:false
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3736
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3737
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3738
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3739
browseImplementorsOf:aSelectorString under:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3740
    "launch a browser for all implementors of aSelector in aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3741
     and its subclasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3742
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3743
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3744
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3745
        in:(aClass withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3746
        title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3747
                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
  3748
                with:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3749
                with:aClass name)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3750
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3751
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3752
     SystemBrowser browseImplementorsOf:#+ under:Integer
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3753
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3754
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3755
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3756
    "Created: / 9.12.1995 / 18:06:09 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3757
    "Modified: / 5.11.2001 / 17:30:15 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3758
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3759
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3760
browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3761
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3762
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3763
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3764
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3765
        in:(Smalltalk allClasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3766
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3767
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3768
     SystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3769
     NewSystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3770
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3771
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3772
    "Created: / 9.12.1995 / 18:01:18 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3773
    "Modified: / 5.11.2001 / 17:31:11 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3774
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3775
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3776
browseImplementorsOfAny:setOfSelectors in:aSetOfClasses
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3777
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3778
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3779
    |title|
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3780
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3781
    setOfSelectors size == 1 ifTrue:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3782
        title := self classResources 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3783
                string:'Implementors of %1' 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3784
                with:(setOfSelectors asOrderedCollection first).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3785
    ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3786
        setOfSelectors size == 2 ifTrue:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3787
            title := self classResources 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3788
                    string:'Implementors of %1 or %2' 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3789
                    with:(setOfSelectors asOrderedCollection first)
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3790
                    with:(setOfSelectors asOrderedCollection second).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3791
        ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3792
            title := self classResources string:'Implementors of some'.
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3793
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3794
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3795
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3796
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3797
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3798
        in:aSetOfClasses
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3799
        title:title
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3800
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3801
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3802
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3803
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3804
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3805
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3806
    "Created: / 10.7.1996 / 10:20:59 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3807
    "Modified: / 5.11.2001 / 17:30:57 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3808
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3809
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3810
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3811
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3812
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3813
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3814
    |list|
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3815
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3816
    list := self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3817
                findImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3818
                in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3819
                ignoreCase:ignoreCase.
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3820
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3821
    list size == 0 ifTrue:[
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3822
        self showNoneFound:title.
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3823
        ^ nil
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3824
    ].
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3825
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3826
    ^ self browseMethods:list asOrderedCollection title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3827
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3828
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3829
     SystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3830
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3831
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3832
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3833
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3834
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3835
     NewSystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3836
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3837
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3838
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3839
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3840
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3841
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3842
    "Modified: / 4.9.1995 / 17:33:39 / claus"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3843
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3844
    "Modified: / 5.11.2001 / 17:30:38 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3845
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3846
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3847
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3848
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3849
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3850
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3851
    ^ self
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3852
        browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3853
        in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3854
        ignoreCase:false
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3855
        title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3856
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3857
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3858
browseInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3859
    "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
  3860
     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
  3861
     instvar is modified"
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3862
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3863
    ^ self browseRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3864
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3865
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3866
browseInstRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3867
    "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
  3868
     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
  3869
     instvar is modified"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3870
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3871
    ^ self browseRefsTo:varName classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly title:title
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3872
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3873
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3874
browseInstRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3875
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3876
     where the instVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3877
     if modsOnly is true, browse only methods where the instvar is modified"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3878
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3879
    ^ self browseInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3880
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3881
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3882
browseReferendsOf:aGlobalName
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3883
    "launch a browser for all methods referencing a global
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3884
     named aGlobalName. The argument may be a symbol, a string or
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3885
     a matchPattern.
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3886
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3887
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3888
    ^ self browseReferendsOf:aGlobalName warnIfNone:true 
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3889
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3890
   "
14944
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3891
    UserPreferences current systemBrowserClass browseReferendsOf:#Transcript
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3892
    UserPreferences current systemBrowserClass browseReferendsOf:'Tr*'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3893
   "
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  3894
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3895
    "Modified: / 30.10.1997 / 23:45:52 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3896
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3897
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3898
browseReferendsOf:aGlobalName ifNone:actionIfNone
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3899
    "launch a browser for all methods referencing a global
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3900
     named aGlobalName.
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3901
    "
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3902
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3903
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3904
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3905
        title:(self classResources string:'Users of: %1' with:aGlobalName)
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3906
        ifNone:actionIfNone
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3907
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3908
    "Modified: / 31.10.1997 / 15:42:05 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3909
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3910
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3911
browseReferendsOf:aGlobalName in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3912
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3913
     named aGlobalName.
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3914
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3915
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3916
    ^ self browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:true 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3917
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3918
   "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3919
    Browser browseReferendsOf:#Transcript
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3920
   "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3921
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3922
    "Created: 10.7.1996 / 10:37:30 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3923
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3924
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3925
browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3926
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3927
     named aGlobalName.
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3928
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3929
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3930
    |globalsPlainName idx|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3931
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3932
    globalsPlainName := aGlobalName.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3933
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3934
        globalsPlainName := globalsPlainName copyFrom:idx+1
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3935
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3936
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3937
    ^ self browseForSymbol:aGlobalName
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3938
                        in:aSetOfClasses
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3939
                     title:(self classResources string:'Users of: %1' with:aGlobalName) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3940
                warnIfNone:doWarn
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3941
                 searchFor:globalsPlainName
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3942
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3943
    "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
  3944
    "Modified: 31.10.1996 / 14:56:38 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3945
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3946
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3947
browseReferendsOf:aGlobalName title:title ifNone:actionIfNone
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3948
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3949
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3950
     the search should be for a global named <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3951
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3952
    |searchBlock browser|
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3953
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3954
    searchBlock := self searchBlockForReferendsOf:aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3955
    browser := self 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3956
                browseMethodsWhere:searchBlock 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3957
                title:title 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3958
                ifNone:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3959
                    actionIfNone value. 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3960
                    ^ nil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3961
                ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3962
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3963
    browser isNil ifTrue:[
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3964
        actionIfNone value
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3965
    ] ifFalse:[
9010
fa5c1fef4aef changed: #browseReferendsOf:title:ifNone:
Claus Gittinger <cg@exept.de>
parents: 9007
diff changeset
  3966
        browser autoSearchVariable:aGlobalName.
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3967
    ].
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3968
    ^ browser
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3969
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3970
    "
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3971
     Tools::NewSystemBrowser browseReferendsOf:'SortedCollection' title:'foo' ifNone:[ self halt ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3972
    "
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3973
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3974
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3975
browseReferendsOf:aGlobalName title:title warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3976
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3977
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3978
     the search should be for a global named <namespace>::<aGlobalName>"
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3979
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3980
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3981
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3982
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3983
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3984
    ].
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3985
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3986
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3987
        browseReferendsOf:aGlobalName 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3988
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3989
        ifNone:b
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3990
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3991
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3992
browseReferendsOf:aGlobalName warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3993
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3994
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3995
     the search should be for a global named <namespace>::<aGlobalName>"
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3996
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3997
    ^ self
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3998
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3999
        title:(self classResources string:'Users of: %1' with:aGlobalName)
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4000
        warnIfNone:doWarn
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4001
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  4002
    "Modified: / 31.10.1997 / 15:42:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4003
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4004
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4005
browseReferendsOfUnboundGlobalsWithTitle:title ifNone:actionIfNone
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4006
    "launch a browser for all methods referencing an unbound global."
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4007
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4008
    |searchBlock browser|
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4009
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4010
    searchBlock := [:cls :mthd :sel | 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4011
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4012
                    |mSource globals potentialNames|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4013
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4014
                    "/ 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
  4015
                    mthd isLazyMethod ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4016
                        mSource := mthd source.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4017
                        mSource notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4018
                            globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4019
                        ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4020
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4021
                        "/ try hard to avoid the usedGlobals - its expensive
6640
326360e94271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6581
diff changeset
  4022
                        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
  4023
                        potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4024
                            potentialNames := potentialNames select:[:lit | (Smalltalk at:lit) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4025
                            potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4026
                                globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4027
                            ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4028
                        ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4029
                    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4030
                    globals notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4031
                        globals contains:[:aGlobalKey | (Smalltalk at:aGlobalKey asSymbol) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4032
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4033
                        false
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4034
                    ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4035
                  ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4036
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4037
    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
  4038
    browser isNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4039
        actionIfNone value
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4040
    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4041
    ^ browser
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4042
!
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4043
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4044
browseReferendsOfUnboundGlobalsWithTitle:title warnIfNone:doWarn
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4045
    "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
  4046
    "
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4047
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4048
    |b|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4049
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4050
    doWarn ifTrue: [
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4051
        b := [self showNoneFound:title]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4052
    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4053
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4054
    ^ self
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4055
        browseReferendsOfUnboundGlobalsWithTitle:title 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4056
        ifNone:b
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4057
!
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4058
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4059
browseRefsTo:aString classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4060
    "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
  4061
     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
  4062
     instvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4063
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4064
    |title|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4065
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4066
    modsOnly ifTrue:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4067
        title := 'Modifications of: %1'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4068
    ] ifFalse:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4069
        title := 'References to: %1 '
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4070
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4071
    ^ self 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4072
        browseRefsTo:aString 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4073
        classVars:classVars 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4074
        in:aCollectionOfClasses 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4075
        modificationsOnly:modsOnly 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4076
        title:(self classResources string:title with:aString)
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4077
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4078
    "Created: 9.12.1995 / 18:07:05 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4079
    "Modified: 9.12.1995 / 18:11:49 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4080
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4081
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4082
browseRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4083
    "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
  4084
     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
  4085
     instvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4086
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4087
    |filter browser pattern|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4088
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4089
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4090
    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
  4091
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4092
    browser notNil ifTrue:[
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4093
        modsOnly ifTrue:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4094
            pattern := varName , ' :='
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4095
        ] ifFalse:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4096
            pattern := varName
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4097
        ].
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4098
        browser autoSearch:pattern 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4099
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4100
    ^ browser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4101
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4102
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4103
browseSendersOf:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4104
    "launch a browser for all senders of aSelector"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4105
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4106
    ^ self browseAllCallsOn:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4107
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4108
    "
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4109
     SystemBrowser browseSendersOf:#+
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4110
     UserPreferences current systemBrowserClass browseSendersOf:#+
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4111
    "
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4112
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4113
    "Modified: / 10.7.1996 / 10:26:15 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4114
    "Created: / 13.11.2001 / 13:52:12 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4115
!
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4116
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4117
browseSuperCallsIn:aCollectionOfClasses title:title
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4118
    "launch a browser for all super sends in aCollectionOfClasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4119
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  4120
    |browser searchBlock|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4121
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4122
    searchBlock := [:class :method :s | 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4123
        |src parser|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4124
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4125
        src := method source.
15334
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4126
        (src notNil and:[ (src findString:'super') ~~ 0 ])  ifTrue:[
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4127
             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
  4128
                        parseMethod:src 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4129
                        in:class 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4130
                        ignoreErrors:true 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4131
                        ignoreWarnings:true.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4132
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4133
            (parser notNil and:[parser ~~ #Error and:[parser usesSuper]])
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4134
        ] ifFalse:[
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4135
            false
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4136
        ]
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4137
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4138
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4139
    browser := self browseMethodsIn:aCollectionOfClasses
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4140
                              where:searchBlock
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4141
                              title:title.
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4142
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4143
    browser notNil ifTrue:[
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4144
        browser autoSearch:'super' 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4145
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4146
    ^ browser
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4147
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4148
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4149
     SystemBrowser
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4150
         browseSuperCallsIn:(Array with:SortedCollection)
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4151
                      title:'superSends in SortedCollection'
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4152
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4153
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4154
    "Created: / 23-11-1995 / 14:08:55 / cg"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4155
    "Modified: / 06-03-2007 / 14:00:12 / cg"
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4156
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4157
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4158
browseSuperCallsUnder:aClass
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4159
    "launch a browser for all supersends in aClass and subclasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4160
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4161
    ^ self browseSuperCallsIn:(aClass withAllSubclasses)
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4162
                        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
  4163
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4164
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4165
     SystemBrowser browseSuperCallsUnder:Number
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4166
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4167
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4168
    "Created: 23.11.1995 / 12:06:06 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4169
    "Modified: 9.12.1995 / 18:11:59 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4170
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4171
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4172
browseUsesOf:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4173
    |dict owners offsets
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4174
     sz  "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4175
     n   "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4176
     removeSet newDict|
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4177
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4178
    owners := ObjectMemory whoReferencesInstancesOf:aClass.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4179
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4180
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4181
     collect set of offsets in dict; key is class
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4182
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4183
    dict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4184
    owners do:[:someObject |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4185
        |cls create|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4186
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4187
        someObject isContext ifFalse:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4188
            "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4189
             someObject refers to an instance of aClass;
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4190
             find out, which instVar(s)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4191
            "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4192
            cls := someObject class.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4193
            cls ~~ Array ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4194
                n := cls instSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4195
                create := [|s| s := Set new. dict at:cls put:s. s].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4196
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4197
                1 to:n do:[:i |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4198
                    |ref|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4199
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4200
                    ref := someObject instVarAt:i.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4201
                    (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4202
                        offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4203
                        offsets add:i.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4204
                    ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4205
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4206
                cls isVariable ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4207
                    cls isPointers ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4208
                        | idx "{ Class: SmallInteger }" |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4209
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4210
                        sz := someObject basicSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4211
                        idx := 1.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4212
                        [idx <= sz] whileTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4213
                            |ref|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4214
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4215
                            ref := someObject basicAt:idx.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4216
                            (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4217
                                offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4218
                                offsets add:0.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4219
                                idx := sz
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4220
                            ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4221
                            idx := idx + 1
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4222
                        ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4223
                    ]        
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4224
                ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4225
            ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4226
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4227
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4228
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4229
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4230
     merge with superclass refs
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4231
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4232
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4233
        cls allSuperclasses do:[:aSuperclass |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4234
            |superSet|
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
            superSet := dict at:aSuperclass ifAbsent:[].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4237
            superSet notNil ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4238
                superSet := dict at:aSuperclass.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4239
                removeSet := Set new.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4240
                set do:[:offset |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4241
                    (superSet includes:offset) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4242
                        removeSet add:offset
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
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4245
                set removeAll:removeSet
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
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4248
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4249
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4250
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4251
     remove empty ones
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4252
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4253
    removeSet := Set new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4254
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4255
        set isEmpty ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4256
            removeSet add:cls
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4257
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4258
    ].
9334
ed9742f1a717 changed: #browseUsesOf:
Claus Gittinger <cg@exept.de>
parents: 9313
diff changeset
  4259
    dict removeAllKeys:removeSet.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4260
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4261
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4262
     replace the indices by real names
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4263
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4264
    newDict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4265
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4266
        |newSet names|
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
        names := cls allInstVarNames.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4269
        newSet := set collect:[:index | 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4270
                index == 0 ifTrue:['*indexed*'] ifFalse:[names at:index].
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
        newDict at:cls put:newSet
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4273
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4274
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4275
    newDict inspect
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4276
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4277
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4278
filterToSearchRefsTo:varName classVars:classVars access:accessType
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4279
    "return a searchblock for variable references (obsolete)"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4280
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4281
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4282
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4283
        instVars:(classVars not) 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4284
        classVars:classVars 
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4285
        globals:false
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4286
        poolVars:false 
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4287
        access:accessType
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4288
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4289
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4290
filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4291
    "return a searchblock for variable references"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4292
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4293
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4294
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4295
        classVars:classVars 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4296
        access:(modsOnly ifTrue:#write ifFalse:#readWrite)
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4297
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4298
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4299
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
  4300
    "return a searchblock for variable references"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4301
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4302
    ^ self
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4303
        filterToSearchRefsTo:varName instVars:doInstVars classVars:doClassVars globals:doGlobals 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4304
        poolVars:false access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4305
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4306
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4307
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
  4308
    "return a searchblock for variable references"
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4309
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4310
    |searchBlock needMatch baseVarName|
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4311
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4312
    needMatch := varName includesMatchCharacters.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4313
    (varName includes:$:) ifTrue:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4314
        baseVarName := varName copyFrom:(varName lastIndexOf:$:)+1
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4315
    ] ifFalse:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4316
        baseVarName := varName
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4317
    ].
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4318
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4319
    searchBlock := [:c :m :s |
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4320
        |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
  4321
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4322
        result := false.
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4323
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4324
        "/ 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
  4325
        "/ 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
  4326
        "/ 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
  4327
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4328
        (m programmingLanguage isSmalltalk 
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4329
        or:[ m programmingLanguage isSTXJavaScript ]) ifTrue:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4330
            "/ For Smalltalk, use parser...
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4331
            src := m source.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4332
            src notNil ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4333
                needMatch ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4334
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4335
                     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
  4336
                     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
  4337
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4338
                    result := (src findString:baseVarName) ~~ 0.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4339
                ] ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4340
                    result := true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4341
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4342
                result ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4343
                    result := false.
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4344
                    parser := (m parserClass)
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4345
                                    parseMethod:src 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4346
                                    in:c 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4347
                                    ignoreErrors:true 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4348
                                    ignoreWarnings:true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4349
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4350
                    (parser notNil and:[parser ~~ #Error]) ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4351
                        vars := Set new.    
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4352
                        doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4353
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4354
                                instVars := parser readInstVars
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4355
                            ] ifFalse:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4356
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4357
                                    instVars := parser modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4358
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4359
                                    instVars := parser usedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4360
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4361
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4362
                            vars addAll:instVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4363
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4364
                        doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4365
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4366
                                classVars := parser readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4367
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4368
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4369
                                    classVars := parser modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4370
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4371
                                    classVars := parser usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4372
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4373
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4374
                            vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4375
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4376
                        doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4377
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4378
                                poolVars := parser readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4379
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4380
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4381
                                    poolVars := parser modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4382
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4383
                                    poolVars := parser usedPoolVars
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
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4386
                            vars addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4387
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4388
                        doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4389
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4390
                                globals := parser readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4391
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4392
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4393
                                    globals := parser modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4394
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4395
                                    globals := parser usedGlobals
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
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4398
                            vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4399
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4400
                        vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4401
                            needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4402
                                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
  4403
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4404
                                result := vars includes:varName
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4405
                            ]
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4406
                        ]
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4407
                    ].
13525
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
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4410
        ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4411
            "/ For all other languages, ask method.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4412
            vars := Set new.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4413
            doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4414
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4415
                    instVars := m readInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4416
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4417
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4418
                        instVars := m modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4419
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4420
                        instVars := m usedInstVars
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4421
                    ]
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4422
                ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4423
                vars addAll:instVars.
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4424
            ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4425
            doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4426
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4427
                    classVars := m readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4428
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4429
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4430
                        classVars := m modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4431
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4432
                        classVars := m usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4433
                    ]
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
                vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4436
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4437
            doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4438
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4439
                    poolVars := m readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4440
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4441
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4442
                        poolVars := m modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4443
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4444
                        poolVars := m usedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4445
                    ]
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 addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4448
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4449
            doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4450
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4451
                    globals := m readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4452
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4453
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4454
                        globals := m modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4455
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4456
                        globals := m usedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4457
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4458
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4459
                vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4460
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4461
            vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4462
                needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4463
                    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
  4464
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4465
                    result := vars includes:varName
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4466
                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4467
            ]
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
        Processor yield.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4470
        result
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  4471
    ].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4472
    ^ searchBlock
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4473
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4474
    "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
  4475
    "Modified: / 23-07-2017 / 13:47:40 / cg"
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4476
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4477
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4478
findAnyResourceIn:aCollectionOfClasses 
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4479
    "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
  4480
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4481
    ^ 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
  4482
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4483
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4484
     SystemBrowser findAnyResourceIn:(ApplicationModel withAllSubclasses)
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4485
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4486
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4487
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4488
findClassRefsTo:aString in:aCollectionOfClasses access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4489
    "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
  4490
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4491
     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
  4492
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4493
    ^ 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
  4494
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4495
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4496
findClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4497
    "return all methods in aCollectionOfClasses where the classVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4498
     aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4499
     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
  4500
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4501
    ^ self findRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4502
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4503
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4504
findClassRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4505
    "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
  4506
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4507
     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
  4508
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4509
    ^ 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
  4510
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4511
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4512
findClassRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4513
    "return all methods in aClass where the classVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4514
     aString is referenced; 
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4515
     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
  4516
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4517
    ^ self findRefsTo:aString classVars:true in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4518
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4519
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4520
findClassRefsTo:aString under:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4521
    "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
  4522
     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
  4523
     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
  4524
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4525
    ^ 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
  4526
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4527
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4528
findClassRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4529
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4530
     where the classVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4531
     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
  4532
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4533
    ^ self findClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4534
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4535
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4536
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4537
findCode:aCodeString in:aCollectionOfClasses isMethod:isMethod 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4538
    "return a collection of all methods in aCollectionOfClasses  
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4539
     containing a matching piece of code.
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4540
     This may be slow, since source-code has to be scanned."
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4541
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4542
    |searchBlock|
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4543
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4544
    searchBlock := self searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  4545
    searchBlock isNil ifTrue:[ ^ nil].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4546
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4547
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4548
    "Modified: / 02-05-2011 / 13:25:15 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4549
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4550
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4551
findCode:aCodeString inMethods:aCollectionOfMethods isMethod:isMethod 
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4552
    "return a collection of all methods in aCollectionOfMethods  
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4553
     containing a matching piece of code."
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4554
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4555
    |searchBlock|
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4556
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4557
    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
  4558
    searchBlock isNil ifTrue:[ ^ nil].
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4559
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4560
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4561
    "Modified: / 02-05-2011 / 13:25:39 / sr"
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4562
!
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4563
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4564
findExceptionHandlersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4565
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4566
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4567
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4568
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4569
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4570
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4571
    "Modified: / 11-05-2010 / 16:18:55 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4572
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4573
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4574
findExceptionHandlersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4575
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4576
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4577
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4578
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4579
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4580
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4581
    "Created: / 11-05-2010 / 16:20:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4582
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4583
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4584
findExceptionRaisersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4585
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4586
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4587
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4588
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4589
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4590
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4591
    "Modified: / 11-05-2010 / 16:18:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4592
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4593
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4594
findExceptionRaisersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4595
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4596
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4597
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4598
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4599
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4600
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4601
    "Created: / 11-05-2010 / 16:20:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4602
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4603
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4604
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4605
    "return a collection of all help-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4606
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4607
     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
  4608
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4609
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4610
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4611
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4612
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4613
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4614
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4615
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4616
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4617
    "return a collection of all help-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4618
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4619
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4620
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4621
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4622
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4623
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4624
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4625
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4626
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4627
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4628
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4629
findImplementors:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4630
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4631
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4632
     Return a collection of methods"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4633
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4634
    |lcSelector list compare testST testJava srchBlockST srchBlockJava collectionOfClasses|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4635
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4636
    list := IdentitySet new.
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4637
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4638
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4639
    (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
  4640
        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
  4641
    ] ifFalse:[
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4642
        compare := [:sel :search | sel = search].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4643
    ].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4644
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4645
    ignoreCase == true ifTrue:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4646
        lcSelector := aSelectorMatchString asLowercase.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4647
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4648
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4649
        testJava := [:mthdSelector :aMethod | (compare value:lcSelector value:aMethod name asLowercase) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4650
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4651
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4652
        testJava := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:aMethod name) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4653
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4654
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4655
    srchBlockST := [:mthdSelector :mthd | (testST value:mthdSelector value:mthd) ifTrue:[ list add:mthd]].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4656
    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
  4657
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4658
    (collectionOfClasses := aCollectionOfClasses) isNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4659
        collectionOfClasses := Smalltalk allClasses
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4660
    ].    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4661
    collectionOfClasses do:[:aClass |
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4662
        |srchBlock|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4663
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4664
        aClass isObsolete ifFalse:[
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4665
            srchBlock := aClass isJavaClass 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4666
                            ifTrue:[ srchBlockJava ]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4667
                            ifFalse:[ srchBlockST ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4668
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4669
            aClass methodDictionary keysAndValuesDo:srchBlock.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4670
            aClass isMeta ifFalse:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4671
                aClass class methodDictionary keysAndValuesDo:srchBlock
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4672
            ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4673
        ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4674
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4676
    ^ list
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4677
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4678
    "
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4679
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4680
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4681
        in: { Number . Float . SmallInteger }
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4682
        ignoreCase: false
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4683
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4684
     Time millisecondsToRun:[    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4685
         SystemBrowser 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4686
            findImplementorsOf:#add:
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4687
            in: (Smalltalk allClasses)
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4688
            ignoreCase: false
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4689
     ]
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4690
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4691
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4692
    "Modified (format): / 22-03-2012 / 07:28:50 / cg"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4693
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4694
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4695
findImplementors:aSelectorMatchString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4696
    "search for all implementors of aSelector in
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4697
     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
  4698
     Return a collection of methods"
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4699
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4700
    |list compare testST testJava lcSelector|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4701
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4702
    list := IdentitySet new.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4703
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4704
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4705
    doMatch ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4706
        compare := [:sel :search | sel match:search].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4707
    ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4708
        compare := [:sel :search | sel = search].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4709
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4710
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4711
    ignoreCase == true ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4712
        lcSelector := aSelectorMatchString asLowercase.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4713
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4714
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4715
        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
  4716
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4717
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4718
        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
  4719
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4720
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4721
    aCollectionOfMethods do:[:eachMethod |
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4722
        |cls sel testBlock|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4723
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4724
        cls := eachMethod mclass.
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4725
        (cls isNil or:[cls isObsolete]) ifFalse:[
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4726
            cls isJavaClass ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4727
                testBlock := testJava
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4728
            ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4729
                testBlock := testST
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4730
            ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4731
            sel := eachMethod selector.    
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4732
            (testBlock value:sel value:eachMethod) ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4733
                list add:eachMethod
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4734
            ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4735
        ]
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4736
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4737
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4738
    ^ list
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4739
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4740
    "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
  4741
!
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4742
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4743
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
  4744
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4745
     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
  4746
     Return a collection of methods"
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4747
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4748
    ^ self 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4749
        findImplementors:aSelectorMatchString 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4750
        in:aCollectionOfClasses 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4751
        ignoreCase:ignoreCase 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4752
        match:true
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4753
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4754
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4755
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4756
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4757
        in:{ Number . Float . SmallInteger }
16443
7ce9ab5ce5e2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16395
diff changeset
  4758
        ignoreCase:false
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4759
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4760
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4761
    "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
  4762
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4763
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4764
findImplementorsMatchingAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4765
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4766
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4767
     Return a collection of methods.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4768
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4769
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4770
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4771
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4772
            self findImplementorsMatching:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4773
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4774
                 ignoreCase:ignoreCase.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4775
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4776
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4777
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4778
"/
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4779
"/    implementors := IdentitySet new.
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4780
"/    aCollectionOfSelectors do:[:eachSelector |
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4781
"/        implementors addAll:(self findImplementorsMatching:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4782
"/    ].
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4783
"/    ^ implementors
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4784
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4785
    "
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4786
     self
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4787
        findImplementorsMatchingAny:#( 'at*:' '*size')
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4788
        in:(Smalltalk allClasses) 
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4789
        ignoreCase:true
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4790
    "
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4791
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4792
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4793
findImplementorsOf:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4794
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4795
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4796
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4797
6480
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4798
    ^ self 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4799
        findImplementors:aSelectorMatchString 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4800
        in:aCollectionOfClasses 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4801
        ignoreCase:ignoreCase 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4802
        match:false
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4803
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4804
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4805
     SystemBrowser findImplementorsOf:#+
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4806
                                   in:(Array with:Number
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4807
                                             with:Float
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4808
                                             with:SmallInteger)
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4809
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4810
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4811
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4812
findImplementorsOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4813
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4814
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4815
     Return a collection of methods.
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4816
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4817
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4818
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4819
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4820
            self findImplementorsOf:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4821
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4822
                 ignoreCase:ignoreCase.
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
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4825
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4826
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4827
"/    implementors := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4828
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4829
"/        implementors addAll:(self findImplementorsOf:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4830
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4831
"/    ^ implementors
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4832
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4833
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4834
findInstRefsTo:aString in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4835
    "return all methods in aCollectionOfClasses where the instVar named
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4836
     aString is referenced; 
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4837
     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
  4838
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4839
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4840
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4841
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4842
findInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4843
    "return all methods in aCollectionOfClasses where the instVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4844
     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
  4845
     instvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4846
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4847
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4848
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4849
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4850
findInstRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4851
    "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
  4852
     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
  4853
     instvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4854
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4855
    ^ 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
  4856
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4857
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4858
findInstRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4859
    "return all methods in aClass where the instVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4860
     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
  4861
     instvar is modified"
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4862
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4863
    ^ self findRefsTo:aString classVars:false in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4864
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4865
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4866
findInstRefsTo:aString under:aClass access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4867
    "return all methods in aClass and subclasses
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4868
     where the classVar named aString is referenced; 
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4869
     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
  4870
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4871
    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4872
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4873
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4874
findInstRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4875
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4876
     where the instVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4877
     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
  4878
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4879
    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4880
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4881
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4882
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4883
    "return a collection of all menu-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4884
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4885
     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
  4886
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4887
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4888
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4889
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4890
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4891
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4892
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4893
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4894
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4895
    "return a collection of all menu-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4896
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4897
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4898
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4899
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4900
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4901
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4902
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4903
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4904
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4905
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4906
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4907
findPoolVarRefsTo:aString inClass:aClass access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4908
    "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
  4909
     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
  4910
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4911
    |filter|
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4912
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4913
    filter := self 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4914
                filterToSearchRefsTo:aString 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4915
                instVars:false classVars:false globals:false poolVars:true 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4916
                access:accessType.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4917
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4918
    ^ self findMethodsIn:(Array with:aClass) inst:true class:true where:filter.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4919
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4920
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4921
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
  4922
    "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
  4923
     varName is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4924
     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
  4925
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4926
    |filter|
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4927
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4928
    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
  4929
    ^ 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
  4930
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4931
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4932
     self
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4933
        findRefsTo:'x'
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4934
        classVars:false
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4935
        in:(Array with:Point)
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4936
        modificationsOnly:true
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4937
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4938
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4939
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4940
findRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4941
    "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
  4942
     varName is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4943
     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
  4944
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4945
    |filter|
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4946
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4947
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4948
    ^ self findMethodsIn:aCollectionOfClasses inst:true class:classVars where:filter.
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4949
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4950
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4951
     self
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4952
        findRefsTo:'x'
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4953
        classVars:false
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4954
        in:(Array with:Point)
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4955
        modificationsOnly:true
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4956
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4957
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4958
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4959
findResource:aResourceSymbolOrCollectionOfSymbols in:aCollectionOfClasses 
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4960
    "return a collection of all methods in aCollectionOfClasses  
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4961
     containing a resource."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4962
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4963
    |searchBlock|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4964
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4965
    aResourceSymbolOrCollectionOfSymbols isSymbol ifTrue:[
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4966
        searchBlock := [:c :m :sel | |resources|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4967
                            (resources := m resources) size > 0
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4968
                            and:[resources includesKey:aResourceSymbolOrCollectionOfSymbols]
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4969
                       ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4970
    ] ifFalse:[
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4971
        searchBlock := [:c :m :sel | |resources|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4972
                            (resources := m resources) size > 0
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4973
                            and:[resources keys includesAny:aResourceSymbolOrCollectionOfSymbols]
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4974
                       ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4975
    ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4976
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4977
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4978
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4979
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4980
     SystemBrowser findResource:#image in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4981
     SystemBrowser findResource:#menu in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4982
     SystemBrowser findResource:#(menu programMenu) in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4983
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4984
!
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4985
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4986
findResource:aStringOrEmpty match:doMatch ignoreCase:ignoreCase in:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4987
    "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
  4988
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4989
    |matchCheck lcSearchString|
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4990
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4991
    aStringOrEmpty isEmptyOrNil ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4992
        matchCheck := [:aResourceName | true ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4993
    ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4994
        doMatch ifTrue:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  4995
            matchCheck := [:aResourceName | aStringOrEmpty match:aResourceName caseSensitive:ignoreCase not]
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4996
        ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4997
            ignoreCase ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4998
                lcSearchString := aStringOrEmpty asLowercase.
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4999
                matchCheck := [:aResourceName | aResourceName asLowercase = lcSearchString]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5000
            ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5001
                matchCheck := [:aResourceName | aResourceName = aStringOrEmpty ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5002
            ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5003
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5004
    ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5005
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5006
    ^ self 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5007
        findMethodsIn:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5008
        where:[:c :m :sel | 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5009
            m hasResource
12073
d63b17e5c9c8 class: SystemBrowser
Stefan Vogel <sv@exept.de>
parents: 12056
diff changeset
  5010
            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
  5011
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5012
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5013
    "
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5014
     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
  5015
    "
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5016
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5017
    "Created: / 06-07-2011 / 12:14:24 / cg"
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5018
!
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5019
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5020
findRespondersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5021
    "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
  5022
     Search within the classes contained in aCollectionOfClasses and their metaclasses.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5023
     This will skip over unloaded classes.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5024
     Return a collection of classes."
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5025
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5026
    ^ Smalltalk allClasses 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5027
        select:[:cls |
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5028
            cls isLoaded 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5029
            and:[ aCollectionOfSelectors conform:[:sel | cls canUnderstand:sel]]].
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5030
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5031
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5032
     to find classes which respond to both indexOf: and replaceFromIndex:toIndex:,
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5033
     use:
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5034
        SystemBrowser 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5035
            findRespondersOfAll:#( indexOf: removeFromIndex:toIndex: ) 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5036
            in:nil 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5037
            ignoreCase:false
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5038
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5039
!
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5040
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5041
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5042
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5043
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5044
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5045
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5046
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5047
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5048
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5049
     SystemBrowser findSendersOf:#+
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5050
                   in:(Array with:Number
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5051
                             with:Float
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5052
                             with:SmallInteger)
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5053
                   ignoreCase:false
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5054
    "
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5055
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5056
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5057
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5058
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5059
     the classes contained in aCollectionOfClasses and their metaclasses.
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5060
     Return a collection of methods"
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5061
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5062
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5063
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5064
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5065
     SystemBrowser findSendersOf:#+
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5066
                   in:(Array with:Number
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5067
                             with:Float
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5068
                             with:SmallInteger)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5069
                   ignoreCase:false
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5070
    "
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5071
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5072
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5073
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5074
    "search for all senders of aSelector in aCollectionOfMethods.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5075
     Return a collection of methods"
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5076
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5077
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5078
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5079
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase.
9313
44795fcbf414 changed: #findSendersOf:inMethods:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 9312
diff changeset
  5080
    searchBlock isNil ifTrue:[^ #() ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5081
    ^ 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
  5082
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5083
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5084
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5085
    "search for all senders of aSelector in aCollectionOfMethods.
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5086
     Return a collection of methods"
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5087
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5088
    |searchBlock|
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5089
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5090
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
9312
71f84182390a changed: #findSendersOf:inMethods:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 9189
diff changeset
  5091
    searchBlock isNil ifTrue:[^ #() ].
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5092
    ^ 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
  5093
!
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5094
17624
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5095
findSendersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5096
    "search for methods which send all selectors in aCollectionOfSelectors in
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5097
     the classes contained in aCollectionOfClasses and their metaclasses.
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5098
     Return a collection of methods."
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5099
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5100
    ^ (self allCallsOn:(aCollectionOfSelectors first) 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5101
                 in:aCollectionOfClasses 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5102
                 ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5103
                 match:false
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5104
    ) select:[:mthd |
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5105
        mthd messagesSent includesAll:aCollectionOfSelectors
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5106
    ].
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5107
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5108
    "
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5109
     SystemBrowser 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5110
        findSendersOfAll:#(#'+' #'-')
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5111
        in:(Smalltalk allClasses)
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5112
        ignoreCase:false  
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5113
    "
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5114
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5115
    "Created: / 24-08-2017 / 13:10:25 / cg"
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5116
!
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5117
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5118
findSendersOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5119
    "search for all senders of any selector in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5120
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5121
     Return a collection of methods.
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5122
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5123
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5124
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5125
        collectAll:[:eachSelector |
6184
bcb22487bc67 senders of any - duplicates
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  5126
            (self allCallsOn:eachSelector 
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5127
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5128
                 ignoreCase:ignoreCase
6184
bcb22487bc67 senders of any - duplicates
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  5129
                 match:false) asSet.
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5130
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5131
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5132
"/    |allSenders|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5133
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5134
"/    allSenders := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5135
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5136
"/        allSenders addAll:(self allCallsOn:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase match:true)
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5137
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5138
"/    ^ allSenders
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5139
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5140
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5141
     SystemBrowser findSendersOfAny:#(#'+' #'-')
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5142
                   in:(Array with:Number
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5143
                             with:Float
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5144
                             with:SmallInteger)
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5145
                   ignoreCase:false  
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5146
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5147
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5148
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5149
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5150
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5151
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5152
     This may be slow, since source-code has to be scanned."
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5153
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5154
    self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5155
        findSpecMethodsFor:specSymbol 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5156
        withString:aString 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5157
        in:aCollectionOfClasses 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5158
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5159
        match:true
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5160
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5161
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5162
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5163
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5164
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5165
     This may be slow, since source-code has to be scanned."
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5166
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5167
    |searchBlock innerSearchBlock|
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5168
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5169
    innerSearchBlock := self searchBlockForString:aString ignoreCase:ignoreCase match:doMatch.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5170
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5171
    searchBlock := [:c :m :sel | 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5172
                            |resources| 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5173
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5174
                            ((resources := m resources) size > 0
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5175
                            and:[resources includesKey:specSymbol]) ifTrue:[
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5176
                                innerSearchBlock value:c value:m value:sel
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5177
                            ]
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5178
                       ].
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5179
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5180
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5181
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5182
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5183
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5184
    "return a collection of all methods in aCollectionOfClasses  
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5185
     containing a string in their source.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5186
     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
  5187
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5188
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5189
        findString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5190
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5191
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5192
        match:true
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5193
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5194
    "
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5195
     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
  5196
    "
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5197
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5198
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5199
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5200
    "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
  5201
     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
  5202
     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
  5203
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5204
    ^ self findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5205
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5206
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5207
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5208
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5209
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5210
        ignoreCase:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5211
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5212
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5213
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5214
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5215
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5216
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5217
     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
  5218
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5219
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5220
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5221
    searchBlock := 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5222
        self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5223
            searchBlockForString:aString 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5224
            ignoreCase:ignoreCase 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5225
            match:doMatch
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5226
            fullWordsOnly:fullWordsOnly.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5227
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5228
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5229
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5230
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5231
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5232
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5233
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5234
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5235
    "return a collection of all methods in aCollectionOfClasses  
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5236
     containing a string in their source.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5237
     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
  5238
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5239
    ^ self findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5240
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5241
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5242
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5243
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5244
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5245
     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
  5246
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5247
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5248
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5249
    searchBlock := self searchBlockForString:aString ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5250
    ^ 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
  5251
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5252
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5253
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5254
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5255
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5256
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5257
    ^ self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5258
        findStringLiteral:aString in:aCollectionOfClasses 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5259
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5260
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5261
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5262
     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
  5263
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5264
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5265
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5266
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5267
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5268
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5269
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5270
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5271
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5272
    searchBlock := self searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5273
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5274
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5275
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5276
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5277
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5278
!
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5279
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5280
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5281
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5282
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5283
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5284
    ^ self
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5285
        findStringLiteral:aString inMethods:aCollectionOfMethods
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5286
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
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
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5289
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5290
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5291
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5292
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5293
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5294
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5295
    searchBlock := self searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5296
    ^ 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
  5297
!
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5298
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5299
findUsingParseTreeSearcher:searcher in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5300
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5301
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5302
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5303
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5304
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5305
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5306
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5307
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5308
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5309
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5310
    "Created: / 11-05-2010 / 16:18:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5311
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5312
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5313
findUsingParseTreeSearcher:searcher inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5314
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5315
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5316
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5317
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5318
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5319
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5320
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5321
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5322
    ^ 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
  5323
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5324
    "Created: / 11-05-2010 / 16:20:12 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5325
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5326
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5327
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5328
    ^ self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:true
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5329
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5330
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5331
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatchArg
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5332
    "return an optimized search block for the senders search.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5333
     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
  5334
     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
  5335
     search is wanted 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5336
     (these operations are executed a zillion times in an inner loop,
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5337
      therefore, the speedup is noticable)"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5338
     
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5339
    |doMatch sel quickSearch idx|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5340
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5341
    doMatch := doMatchArg.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5342
    (doMatch and:[aSelectorString = '*']) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5343
        "a trivial block, which matches everything"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5344
        ^ [:class :method :s | true].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5345
    ].    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5346
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5347
    aSelectorString includesMatchCharacters ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5348
        doMatch := false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5349
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5350
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5351
    (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
  5352
        "/ a matchString or ignoreCase - need string matching procedure
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5353
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5354
        quickSearch := aSelectorString.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5355
        (quickSearch startsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5356
            quickSearch := quickSearch copyButFirst
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5357
        ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5358
        (quickSearch endsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5359
            quickSearch := quickSearch copyButLast
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5360
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5361
        
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5362
        "/ 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
  5363
        "/ 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
  5364
        (idx := quickSearch indexOfAny:'*#[:') ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5365
            quickSearch := quickSearch copyTo:idx-1.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5366
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5367
        
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5368
        (ignoreCase and:[quickSearch includesMatchCharacters not]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5369
            doMatch ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5370
                ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5371
                    |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5372
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5373
                    inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5374
                    method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5375
                    method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5376
                        src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5377
                        (src notNil and:[src includesString:aSelectorString caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5378
                            method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5379
                        ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5380
                            skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5381
                        ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5382
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5383
                    skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5384
                        inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5385
                            (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5386
                                literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5387
                                    (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5388
                                    and:[(aLiteral sameAs:aSelectorString)]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5389
                                ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5390
                    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5391
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5392
                    inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5393
                    and:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5394
                        method messagesSent contains:[:msg | msg sameAs:aSelectorString ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5395
                    ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5396
               ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5397
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5398
            
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5399
            ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5400
                |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5401
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5402
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5403
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5404
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5405
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5406
                    (src notNil and:[src includesString:quickSearch caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5407
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5408
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5409
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5410
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5411
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5412
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5413
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5414
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5415
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5416
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5417
                                and:[(aLiteral includesString:quickSearch caseSensitive:false)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5418
                                and:[(aSelectorString match:aLiteral caseSensitive:false)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5419
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5420
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5421
      
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5422
                inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5423
                and:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5424
                    method messagesSent 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5425
                        contains:[:sel | aSelectorString match:aSelectorString caseSensitive:false]
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5426
                ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5427
           ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5428
        ].
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5429
        
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5430
        (ignoreCase or:[quickSearch includesMatchCharacters]) ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5431
            ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5432
                |method src inLiterals skip|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5433
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5434
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5435
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5436
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5437
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5438
                    (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5439
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5440
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5441
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5442
                    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5443
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5444
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5445
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5446
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5447
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5448
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5449
                                and:[(aLiteral includesString:quickSearch)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5450
                                and:[(aSelectorString match:aLiteral)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5451
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5452
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5453
                inLiterals and:[ method messagesSent includes:aSelectorString]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5454
           ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5455
        ]. 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5456
        ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5457
            |method src inLiterals skip|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5458
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5459
            method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5460
            "/ expensive search
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5461
            inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5462
            method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5463
                src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5464
                (src notNil and:[src includesMatchString:aSelectorString]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5465
                    method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5466
                ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5467
                    skip := true.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5468
                ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5469
            ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5470
            skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5471
                inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5472
                    (method literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5473
                        (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5474
                        and:[ aSelectorString match:aLiteral asLowercase caseSensitive:ignoreCase not]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5475
                    ] ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5476
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5477
            inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5478
            and:[ 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5479
                method messagesSent 
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5480
                    contains:[:anySelector | 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5481
                        aSelectorString match:anySelector caseSensitive:ignoreCase not
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5482
                    ] 
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5483
            ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5484
       ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5485
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5486
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5487
    "/ no matchString and not ignoring case - can do it much faster
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5488
    sel := aSelectorString asSymbolIfInterned.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5489
    sel isNil ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5490
        ^ nil     "/ none
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5491
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5492
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5493
    quickSearch := sel.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5494
    "/ 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
  5495
    (idx := quickSearch indexOf:$:) ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5496
        quickSearch := quickSearch copyTo:idx-1.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5497
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5498
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5499
    ^ [:class :methodArg :s |
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5500
        |method src|
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5501
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5502
        method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5503
        method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5504
            src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5505
            (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5506
                method makeRealMethod.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5507
                method referencesLiteral: "sends:" sel.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5508
            ] ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5509
                false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5510
            ]
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5511
        ] ifFalse:[
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5512
            method sendsSelector:sel
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5513
        ]
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5514
    ].
10416
82d17ccb68ad changed: #searchBlockForAllCallsOn:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 10386
diff changeset
  5515
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5516
    "Modified: / 05-02-2017 / 01:25:14 / cg"
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5517
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5518
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5519
searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5520
    "return a block to search for a piece of code.
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5521
     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
  5522
     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
  5523
        - 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
  5524
          methods which also send all those messages,
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5525
        - 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
  5526
          methods which also refer to those globals"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5527
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5528
    |errAction searchTree searcher globalVariablesUsed usedSymbols usedStrings
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5529
     sentMessages searchBlock foundMatch numMethodArgs methodSelector nameSpacesForGlobals|
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5530
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5531
"/self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5532
"/rule := ParseTreeLintRule 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5533
"/    createParseTreeRule: (Array with: aCodeString)
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5534
"/    method: isMethod
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5535
"/    name: 'Search for: ' , aCodeString.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5536
"/self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5537
"/
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5538
"/    searchBlock := [:c :m :sel | 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5539
"/        rslt := SmalllintChecker
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5540
"/            runRule:rule
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5541
"/            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
  5542
"/        
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5543
"/        self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5544
"/    ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5545
"/^ searchBlock.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5546
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5547
    errAction := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5548
        [:errMsg :pos | 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5549
            Dialog warn:('Error during pattern parse: %1 (position %2)'
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5550
                            bindWith:errMsg with:pos).
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5551
           ^ nil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5552
        ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5553
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5554
    isMethod ifTrue:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5555
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5556
                    parseRewriteMethod:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5557
                    onError: errAction.
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5558
        numMethodArgs := searchTree arguments size.
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5559
        methodSelector := searchTree selector.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5560
    ] ifFalse:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5561
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5562
                    parseRewriteExpression:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5563
                    onError: errAction.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5564
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5565
    
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5566
    "/ extract messages sent by the pattern
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5567
    Error handle:[:ex |
12837
80c40ce2cd56 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12831
diff changeset
  5568
        self halt:'check this, please'.
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5569
    ] do:[
6549
cd47faed29f6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6546
diff changeset
  5570
        sentMessages := searchTree sentMessages.         
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5571
    ].
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5572
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5573
    nameSpacesForGlobals := Set with:Smalltalk.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5574
    aCollectionOfClasses do:[:eachClass |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5575
        nameSpacesForGlobals add:eachClass topNameSpace
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5576
    ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5577
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5578
    "/ extract globals used by the pattern
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5579
    globalVariablesUsed := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5580
    searchTree referencedVariables do:[:node |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5581
        |nm ns alternatives|
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5582
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5583
        node isPatternNode ifFalse:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5584
            nm := node name.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5585
            ns := nameSpacesForGlobals detect:[:ns | ns includesKey: nm asSymbol] ifNone:nil.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5586
            ns notNil ifTrue:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5587
                alternatives := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5588
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5589
                ('Smalltalk::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: ('Smalltalk::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5590
                (ns name,'::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: (ns name,'::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5591
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5592
                globalVariablesUsed add:alternatives
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5593
            ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5594
        ]
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5595
    ].
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5596
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5597
    "/ sorry: 
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5598
    "/      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
  5599
    "/      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
  5600
    "/      them, to avoid parsing.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5601
    usedSymbols := searchTree usedSymbols.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5602
    usedStrings := searchTree usedLiterals select:[:lit | lit isString].
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5603
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5604
    searcher := ParseTreeSearcher new.
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5605
    isMethod ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5606
        searcher 
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5607
            matchesMethod:aCodeString
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5608
            do:[:aNode :answer | foundMatch := true].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5609
    ] ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5610
        searcher 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5611
            matchesTree:searchTree
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5612
            do:[:aNode :answer | foundMatch := true].
6303
47c12063b000 Fix BC-Compile error
Stefan Vogel <sv@exept.de>
parents: 6184
diff changeset
  5613
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5614
    searcher computeQuickSearchStrings.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5615
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5616
    searchBlock := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5617
        [:c :m :sel | 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5618
            |isSTCCompiled allSelectorsInLiteralArray allMessagesSent 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5619
             allGlobalsReferenced allUsedSymbolsInLiteralArray allStringsInLiteralArray
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5620
             allSent src rslt parseTree
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5621
             literalsInMethod|       
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5622
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5623
            foundMatch := false.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5624
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5625
            "/ can speedup the search, by filtering for number of message-args first...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5626
            (isMethod not 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5627
            or:[ numMethodArgs isNil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5628
            or:[ numMethodArgs == m numArgs ]]) ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5629
                m isLazyMethod ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5630
                    src := m source.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5631
                    src notNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5632
                        m makeRealMethod.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5633
                    ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5634
                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5635
                "/ can speedup the search, by quickly filtering for sent messages...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5636
                literalsInMethod := m literals.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5637
                allSelectorsInLiteralArray := sentMessages isEmptyOrNil or:[ literalsInMethod includesAll:sentMessages ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5638
                allSelectorsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5639
                    "/ and used symbols/globals first...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5640
                    allUsedSymbolsInLiteralArray := usedSymbols isEmptyOrNil or:[ literalsInMethod includesAll:usedSymbols ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5641
                    allUsedSymbolsInLiteralArray ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5642
                        "/ 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
  5643
                        "/ 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
  5644
                        isSTCCompiled := m byteCode isNil.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5645
                        isSTCCompiled ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5646
                            allStringsInLiteralArray := true.   "/ stc-compiled: don't know    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5647
                        ] ifFalse:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5648
                            allStringsInLiteralArray := usedStrings isEmptyOrNil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5649
                                                        or:[ literalsInMethod includesAll:usedStrings "literalsInMethod contains:[:lit | lit isString]" ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5650
                        ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5651
                        allStringsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5652
                            allGlobalsReferenced := globalVariablesUsed conform:[:varNames | varNames contains:[:varName | m referencesGlobal:varName]].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5653
                            allGlobalsReferenced ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5654
                                allMessagesSent := sentMessages isEmptyOrNil 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5655
                                                   or:[ m messagesSent includesAll:sentMessages ].
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5656
                                allMessagesSent ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5657
                                    src := m source.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5658
                                    src isNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5659
                                        ('Browser [info]: no source for ' , m printString) infoPrintCR.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5660
                                    ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5661
                                        isSTCCompiled ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5662
                                            usedStrings notEmptyOrNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5663
                                                "/ 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
  5664
                                                "/ before doing a slow parse
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5665
                                                allStringsInLiteralArray := usedStrings conform:[:eachString | src includesString:eachString].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5666
                                            ]
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5667
                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5668
                                        allStringsInLiteralArray ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5669
                                            (searcher canQuicklyReject:src) ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5670
                                                "/ Transcript show:'qReject: '; showCR:m whoString.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5671
                                            ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5672
                                                "/ the rest is done by the slower RB-match process...
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5673
                                                parseTree := 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5674
                                                    RBParser 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5675
                                                        parseSearchMethod:src 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5676
                                                        onError: [:str :pos | 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5677
                                                            "/ self halt.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5678
                                                            Transcript show:'Error during search in '; showCR:m. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5679
                                                            Transcript showCR:str. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5680
                                                            Transcript showCR:pos. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5681
                                                            nil
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5682
                                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5683
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5684
                                                parseTree notNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5685
                                                    searcher executeTree:parseTree.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5686
                                                    "/ notice: searcher sets foundMatch !!
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5687
                                                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5688
                                            ].
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5689
                                        ].
5251
847d633792ce tuned code search if global vars are involved
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
  5690
                                    ]
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5691
                                ]
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5692
                            ]
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5693
                        ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5694
                    ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5695
                ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5696
            ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5697
            foundMatch.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5698
       ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5699
    ^ searchBlock.
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5700
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5701
    "Created: / 02-05-2011 / 13:25:01 / sr"
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5702
    "Modified: / 20-07-2012 / 19:07:36 / cg"
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5703
!
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5704
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5705
searchBlockForCode:aCodeString isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5706
    "return a block to search for a piece of code (intelligent search)."
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5707
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5708
    ^ self searchBlockForCode:aCodeString in:#() isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5709
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5710
    "Modified: / 02-05-2011 / 13:26:18 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5711
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5712
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5713
searchBlockForParseTreeSearcher:searcher isMethod:isMethod
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5714
    "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
  5715
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5716
    |errAction searchBlock foundMatch|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5717
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5718
    errAction := [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5719
                    Dialog warn:'Error during parse: ' , str , ' (position ' , pos printString , ')'.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5720
                    ^ nil
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5721
                 ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5722
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5723
    searchBlock := [:c :m :sel | 
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5724
                        |src parseTree|       
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5725
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5726
                        foundMatch := false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5727
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5728
                        m isLazyMethod ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5729
                            src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5730
                            src notNil ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5731
                                m makeRealMethod.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5732
                            ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5733
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5734
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5735
                        src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5736
                        src isNil ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5737
                            ('Browser [info]: no source for ' , m printString) infoPrintCR.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5738
                        ] ifFalse:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5739
                            parseTree := RBParser 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5740
                                            parseSearchMethod:src 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5741
                                            onError: [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5742
                                                Transcript show:'Error in '; showCR:m. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5743
                                                Transcript showCR:str. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5744
                                                Transcript showCR:pos. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5745
                                                nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5746
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5747
                            parseTree notNil ifTrue:[
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5748
                                foundMatch := searcher executeTree:parseTree initialAnswer:false.
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5749
                            ]
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5750
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5751
                        foundMatch.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5752
                   ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5753
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5754
    ^ searchBlock.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5755
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5756
    "Created: / 11-05-2010 / 16:14:25 / cg"
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5757
    "Modified: / 11-05-2010 / 22:05:09 / cg"
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5758
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5759
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5760
searchBlockForReferendsOf:aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5761
    "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
  5762
     which may be a matchpattern.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5763
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5764
     the name should be <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5765
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  5766
    |globalsPlainName idx sym1 sym2|
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5767
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5768
    globalsPlainName := aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5769
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5770
        globalsPlainName := globalsPlainName copyFrom:idx+1.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5771
        (globalsPlainName size == 0 or:[globalsPlainName = '*']) ifTrue:[
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5772
            globalsPlainName := aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5773
        ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5774
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5775
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5776
    "/ matchingGlobalNames := OrderedCollection new.
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5777
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5778
    aGlobalName includesMatchCharacters ifFalse:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5779
        sym1 := aGlobalName asSymbolIfInterned. 
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5780
        sym2 := globalsPlainName asSymbolIfInterned.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5781
        (sym1 isNil and:[ sym2 isNil ]) ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5782
            ^ [:cls :mthd :sel | false ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5783
        ].
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5784
        "/ if any is nil, search for the same
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5785
        sym1 := sym1 ? sym2.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5786
        sym2 := sym2 ? sym1.
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5787
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5788
        ^ [:cls :mthd :sel |
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5789
            |mSource ok m usedGlobals|
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5790
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5791
            ok := false.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5792
            "/ kludge: Lazy methods do not include symbols in the literal array - sigh
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5793
            mthd isLazyMethod ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5794
                mSource := mthd source.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5795
                (mSource notNil) ifTrue:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5796
                    (mSource includesString:(sym2)) ifTrue:[
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5797
                        usedGlobals := mthd usedGlobals.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5798
                        (usedGlobals includes:sym1) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5799
                            ok := true
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5800
                        ] ifFalse:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5801
                            (sym1 ~= sym2 and:[usedGlobals includes:sym2]) ifTrue:[
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5802
                                ok := true
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5803
                            ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5804
                        ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5805
                    ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5806
                ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5807
            ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  5808
                m := mthd originalMethodIfWrapped.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5809
                ((m refersToLiteral:sym1) or:[ sym1 ~= sym2 and:[m refersToLiteral:sym2] ]) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5810
                    usedGlobals := m usedGlobals.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5811
                    ok := (usedGlobals includes:sym1) or:[ sym1 ~= sym2 and:[usedGlobals includes:sym2] ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5812
                ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5813
            ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5814
            ok
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5815
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5816
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5817
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5818
    ^ [:cls :mthd :sel | 
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5819
        |mSource usedGlobals global m|
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5820
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5821
        "/ kludge: Lazy methods do not include symbols in the literal array - sigh
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5822
        mthd isLazyMethod ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5823
            mSource := mthd source.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5824
            mSource notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5825
                usedGlobals := mthd usedGlobals
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5826
            ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5827
        ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  5828
            m := mthd originalMethodIfWrapped.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5829
            (m literals contains:[:lit | (aGlobalName match:lit) or:[globalsPlainName match:lit]]) ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5830
                usedGlobals := m usedGlobals
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5831
            ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5832
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5833
        usedGlobals notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5834
            global := usedGlobals detect:[:lit | aGlobalName match:lit] ifNone:nil.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5835
            global isNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5836
                global := usedGlobals detect:[:lit | globalsPlainName match:lit] ifNone:nil.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5837
            ].
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5838
"/            global notNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5839
"/                matchingGlobalNames add:global.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5840
"/            ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5841
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5842
        global notNil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5843
    ].
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5844
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5845
    "Modified: / 24-07-2011 / 09:50:30 / cg"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5846
!
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5847
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5848
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5849
    "return a block to search for a string."
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5850
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5851
    ^ self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5852
        searchBlockForString:aString 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5853
        ignoreCase:ignoreCase 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5854
        match:doMatchArg 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5855
        fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5856
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5857
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5858
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5859
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5860
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5861
        ignoreCase:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5862
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5863
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5864
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5865
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5866
    "return a block to search for a string."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5867
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5868
    |checkBlock lineCheckBlock pattern doMatch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5869
     quickCheckString firstMatchIndex lastMatchIndex|
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5870
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5871
    doMatch := doMatchArg.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5872
    aString includesMatchCharacters ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5873
        doMatch := false.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5874
    ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5875
    doMatch ifTrue:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5876
        "a matchString"
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5877
        pattern := aString.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5878
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5879
        firstMatchIndex := aString indexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5880
        lastMatchIndex := aString lastIndexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5881
        "/ which is longer - left or right part
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5882
        firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5883
            "/ use left part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5884
            quickCheckString := aString copyTo:firstMatchIndex-1
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5885
        ] ifFalse:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5886
            "/ use right part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5887
            quickCheckString := aString copyFrom:lastMatchIndex+1            
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5888
        ].    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5889
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5890
        aString first == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5891
            pattern := '*',pattern
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5892
        ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5893
        aString last == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5894
            pattern := pattern,'*'
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5895
        ].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5896
        "/ when doing a match, be careful to not match acrosss lines
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5897
        lineCheckBlock := [:line | pattern match:line caseSensitive:ignoreCase not].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5898
        quickCheckString size > 1 ifTrue:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5899
            checkBlock := [:src | 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5900
                            (src includesString:quickCheckString caseSensitive:ignoreCase not)
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5901
                            and:[ (lineCheckBlock value:src)
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5902
                            and:[ src asStringCollection contains:lineCheckBlock ]]].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5903
        ] ifFalse:[    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5904
            checkBlock := [:src | 
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5905
                            (lineCheckBlock value:src)
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5906
                            and:[ src asStringCollection contains:lineCheckBlock ]].
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5907
        ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5908
    ] ifFalse:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5909
        checkBlock := [:src | src includesString:aString caseSensitive:ignoreCase not]
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5910
    ].
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5911
    
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5912
    ^ [:cls :mthd :sel | 
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5913
        |src found idx1 reallyFound ch1 ch2|
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5914
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5915
        found := false.
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5916
        src := mthd source.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5917
        src isNil ifTrue:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5918
            ('Browser [info]: no source for ' , mthd printString) infoPrintCR.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5919
        ] ifFalse:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5920
            found := checkBlock value:src.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5921
            (fullWordsOnly and:[found]) ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5922
                self halt.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5923
                doMatch ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5924
                    
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5925
                ] ifFalse:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5926
                    reallyFound := false.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5927
                    idx1 := 0.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5928
                    [ 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5929
                        reallyFound not
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5930
                        and:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5931
                            idx1 := src indexOfSubCollection:aString startingAt:idx1+1 ifAbsent:0 caseSensitive:ignoreCase not.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5932
                            idx1 ~~ 0]
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5933
                    ] whileTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5934
                        "/ see if it is a free-standing word
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5935
                        reallyFound := true.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5936
                        idx1 > 1 ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5937
                            ch1 := src at:idx1-1.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5938
                            (ch1 isLetter or:[ch1 == $_]) ifTrue:[ reallyFound := false].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5939
                        ].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5940
                        (idx1+aString size-1) < src size ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5941
                            ch2 := src at:idx1+aString size.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5942
                            (ch2 isLetter or:[ch2 == $_]) ifTrue:[ reallyFound := false].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5943
                        ].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5944
                    ].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5945
                    found := reallyFound
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5946
                ].                
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5947
            ].                
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5948
        ].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5949
        found
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5950
      ]
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5951
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5952
    "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5953
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5954
    "
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5955
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5956
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5957
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5958
    "return a block to search for a string-literal."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5959
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5960
    ^ self
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5961
        searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5962
        fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5963
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5964
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5965
     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
  5966
     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
  5967
     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
  5968
     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
  5969
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5970
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5971
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5972
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5973
    "return a block to search for a string-literal."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5974
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5975
    |pattern doMatch checkLiteral checkSource 
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5976
     quickCheckString firstMatchIndex lastMatchIndex|
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5977
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5978
    aString isEmpty ifTrue:[^ [:cls :mthd :sel | true ]].
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5979
    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5980
    doMatch := doMatchArg.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5981
    (aString includesMatchCharacters) ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5982
        doMatch := false
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5983
    ].
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5984
    doMatch ifTrue:[
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5985
        "a matchString"
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5986
        pattern := aString.    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5987
        aString first == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5988
            pattern := '*',pattern
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5989
        ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5990
        aString last == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5991
            pattern := pattern,'*'
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5992
        ].
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5993
        checkLiteral := [:lit | pattern match:lit caseSensitive:ignoreCase not].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5994
        firstMatchIndex := aString indexOfAny:'*#['.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5995
        lastMatchIndex := aString lastIndexOfAny:'*#['.
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5996
        "/ which is longer - left or right part?
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5997
        firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5998
            "/ use left part as quickSearch
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5999
            quickCheckString := aString copyTo:firstMatchIndex-1
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6000
        ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6001
            "/ use right part as quickSearch
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6002
            quickCheckString := aString copyFrom:lastMatchIndex+1            
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6003
        ].    
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6004
        quickCheckString size > 1 ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6005
            checkSource := [:src | src includesString:quickCheckString caseSensitive:ignoreCase not]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6006
        ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6007
            checkSource := [:src | true]. "/ not worth the effort
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6008
        ].    
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6009
    ] ifFalse:[
5891
2a0c77668f34 findString caseless fixed
Claus Gittinger <cg@exept.de>
parents: 5877
diff changeset
  6010
        ignoreCase ifTrue:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6011
            checkLiteral := [:lit | lit includesString:aString caseSensitive:true].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6012
            checkSource := [:src | src includesString:aString caseSensitive:true].
5891
2a0c77668f34 findString caseless fixed
Claus Gittinger <cg@exept.de>
parents: 5877
diff changeset
  6013
        ] ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6014
            checkLiteral := [:lit | lit includesString:aString].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6015
            checkSource := [:src | src includesString:aString].
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6016
        ].    
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6017
    ].
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6018
        
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6019
    ^ [:cls :methodArg :sel | 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6020
        "/ sorry: the following does not work, because stc does not place string-constants
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6021
        "/ into the literals.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6022
        "/        (mthd literalsDetect:[:lit |
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6023
        "/            lit isString
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6024
        "/            and:[ lit isSymbol not
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6025
        "/            and:[ checkLiteral value:lit ]]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6026
        "/        ] ifNone:[nil]) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6027
        "/            notNil
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6028
        "/ so we must parse here (sigh)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6029
        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6030
        |method src skip tree found|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6031
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6032
        skip := found := false.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6033
        method := methodArg originalMethodIfWrapped.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6034
        method isLazyMethod ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6035
            src := method source.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6036
            (src notNil) ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6037
                method makeRealMethod.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6038
            ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6039
                skip := true
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6040
            ].    
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6041
        ].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6042
        skip ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6043
            src := method source.
17056
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6044
            src isNil ifTrue:[
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6045
                ('SystemBrowser: [warning]: no source for method: ',methodArg printString) errorPrintCR.
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6046
            ].    
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6047
            (src notNil and:[src includes:$']) ifTrue:[ "/ eliminates many
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6048
                (checkSource value:src) ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6049
                    tree := cls parseTreeFor:sel.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6050
                    "/ walk
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6051
                    found :=
17498
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6052
                        tree notNil 
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6053
                        and:[tree usedLiterals contains:[:lit |
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6054
                                lit isString
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6055
                                and:[ lit isSymbol not
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6056
                                and:[ checkLiteral value:lit ]]]]
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6057
                ].        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6058
            ].        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6059
        ].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6060
        found
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6061
      ]
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6062
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6063
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6064
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6065
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6066
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6067
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6068
    "
17498
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6069
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6070
    "Modified: / 20-04-2017 / 11:28:05 / stefan"
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6071
!
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6072
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6073
searchBlockForSymbol:aSymbol 
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6074
    "return a matchblock to search for all methods referencing aSymbol.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6075
     false if no such symbol exists"
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6076
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6077
    (aSymbol includesMatchCharacters) ifTrue:[
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6078
        "a matchString"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6079
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6080
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6081
                        (aLiteral isMemberOf:Symbol) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6082
                        and:[aSymbol match:aLiteral]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6083
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6084
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6085
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6086
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6087
    ] ifFalse:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6088
        aSymbol asSymbolIfInterned isNil ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6089
            ^ false
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6090
        ].
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6091
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6092
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6093
                    (aSymbol == aLiteral) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6094
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6095
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6096
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6097
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6098
    ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6099
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6100
    "Created: / 22-03-2012 / 06:56:51 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6101
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6102
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6103
!SystemBrowser class methodsFor:'startup'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6104
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6105
browseAllSelect:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6106
    "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
  6107
     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
  6108
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6109
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6110
        browseMethodsWhere:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6111
        title:'selected messages'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6112
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6113
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6114
     SystemBrowser browseAllSelect:[:aClass :aMethod :selector | selector numArgs == 3]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6115
    "
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6116
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6117
    "Modified: 24.1.1997 / 19:45:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6118
!
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6119
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6120
browseClass:aClass
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6121
    "launch a browser for aClass.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6122
     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
  6123
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6124
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6125
        newWithLabel:aClass name
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6126
        setupSelector:#setupForClass:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6127
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6128
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6129
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6130
     SystemBrowser browseClass:Object
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6131
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6132
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6133
    "Modified: 24.1.1997 / 19:45:16 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6134
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6135
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6136
browseClass:aClass methodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6137
    "launch a browser for all methods under aCategory in aClass"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6138
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6139
    ^ self newWithLabel:(aClass name , ' ' , aCategory)
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6140
          setupBlock:[:browser | browser setupForClass:aClass methodCategory:aCategory]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6141
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6142
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6143
     SystemBrowser browseClass:String methodCategory:'copying'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6144
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6145
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6146
    "Modified: 24.1.1997 / 19:45:23 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6147
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6148
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6149
browseClass:aClass selector:selector
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6150
    "launch a browser for the method at selector in aClass."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6151
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6152
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6153
        newWithLabel:(aClass name , ' ' , selector , ' ' , selector)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6154
        setupBlock:[:newBrowser | newBrowser setupForClass:aClass selector:selector]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6155
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6156
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6157
     SystemBrowser browseClass:Object selector:#printString
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6158
     Tools::NewSystemBrowser openInClass:Object selector:#printString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6159
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6160
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6161
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6162
browseClassCategory:aClassCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6163
    "launch a browser for all classes under aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6164
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6165
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6166
        newWithLabel:aClassCategory
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6167
        setupSelector:#setupForClassCategory:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6168
        arg:aClassCategory
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6169
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6170
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6171
     SystemBrowser browseClassCategory:'Kernel-Objects'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6172
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6173
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6174
    "Modified: 24.1.1997 / 19:45:32 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6175
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6176
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6177
browseClassHierarchy:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6178
    "launch a browser for aClass and all its superclasses.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6179
     this is different from the fullProtocol browser."
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6180
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6181
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6182
        newWithLabel:(aClass name , '-' , 'hierarchy')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6183
        setupSelector:#setupForClassHierarchy:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6184
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6185
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6186
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6187
     SystemBrowser browseClassHierarchy:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6188
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6189
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6190
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6191
browseClasses:aList label:title
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6192
    "launch a browser for all classes in aList"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6193
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6194
    ^ self 
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6195
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6196
        setupBlock:[:b | b setupForClassList:aList sort:true]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6197
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6198
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6199
     SystemBrowser browseClasses:(Array with:Object
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6200
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6201
                           title:'two classes'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6202
    "
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6203
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6204
    "Modified: 28.5.1996 / 13:52:25 / cg"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6205
!
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6206
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6207
browseClasses:aList label:title sort:doSort
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6208
    "launch a browser for all classes in aList"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6209
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6210
    ^ self 
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6211
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6212
        setupBlock:[:b | b setupForClassList:aList sort:doSort]
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6213
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6214
    "
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6215
     SystemBrowser browseClasses:(Array with:Object
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6216
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6217
                           title:'two classes'
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6218
    "
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6219
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6220
    "Created: 28.5.1996 / 13:52:09 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6221
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6222
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6223
browseClasses:aList title:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6224
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6225
    "launch a browser for all classes in aList"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6226
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6227
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6228
    ^ self browseClasses:aList label:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6229
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6230
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6231
browseClasses:aList title:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6232
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6233
    "launch a browser for all classes in aList"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6234
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6235
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6236
    ^ self browseClasses:aList label:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6237
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6238
    "Created: 28.5.1996 / 13:52:09 / cg"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6239
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6240
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6241
browseFullClassProtocol:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6242
    "launch a browser for aClasses full protocol.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6243
     This is different from hierarchy browsing."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6244
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6245
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6246
        newWithLabel:(aClass name , '-' , 'full protocol')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6247
        setupSelector:#setupForFullClassProtocol:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6248
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6249
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6250
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6251
     SystemBrowser browseFullClassProtocol:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6252
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6253
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6254
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6255
browseFullClasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6256
    "launch a browser showing all methods at once"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6257
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6258
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6259
        newWithLabel:'Full Class Browser'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6260
        setupBlock:[:newBrowser | newBrowser setupForFullClass]
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6261
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6262
    "SystemBrowser browseFullClasses"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6263
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6264
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6265
browseInstMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6266
    "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
  6267
     where aBlock evaluates to true"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6268
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6269
    ^ self      
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6270
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6271
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6272
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6273
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6274
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6275
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6276
    "Modified: 24.1.1997 / 19:44:45 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6277
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6278
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6279
browseInstMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6280
    "launch a browser for all instance methods of all classes in
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6281
     aCollectionOfClasses where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6282
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6283
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6284
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6285
        inst:true class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6286
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6287
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6288
    "Modified: 24.1.1997 / 19:43:41 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6289
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6290
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6291
browseInstMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6292
    "launch a browser for all instance methods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6293
     where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6294
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6295
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6296
        browseMethodsIn:(Array with:aClass) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6297
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6298
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6299
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6300
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6301
    "Modified: 24.1.1997 / 19:43:50 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6302
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6303
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6304
browseMethod:aMethod
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6305
    "launch a single-method browser."
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6306
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6307
    ^ self browseMethods:{ aMethod }
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6308
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6309
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6310
     self browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6311
     Tools::NewSystemBrowser browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6312
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6313
!
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6314
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6315
browseMethodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6316
    "launch a browser for all methods where category = aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6317
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6318
    |searchBlock|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6319
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6320
    aCategory includesMatchCharacters ifTrue:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6321
        searchBlock := [:c :m :s | aCategory match:m category].
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6322
    ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6323
        searchBlock := [:c :m :s | m category = aCategory]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6324
    ].
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6325
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6326
    ^ self browseMethodsWhere:searchBlock title:('all methods with category of ' , aCategory)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6327
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6328
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6329
     SystemBrowser browseMethodCategory:'printing & storing'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6330
     SystemBrowser browseMethodCategory:'print*'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6331
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6332
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6333
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6334
browseMethods:aListOfMethods
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6335
    "launch a multi-method browser."
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6336
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6337
    |title|
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6338
    
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6339
    aListOfMethods size == 1 ifTrue:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6340
        title := aListOfMethods first whoString
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6341
    ] ifFalse:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6342
        title := 'some methods'
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6343
    ].    
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6344
    ^ self browseMethods:aListOfMethods title:title
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6345
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6346
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6347
     self 
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6348
        browseMethods:(Array with:(Array compiledMethodAt:#at:))
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6349
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6350
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6351
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6352
                             with:(OrderedCollection compiledMethodAt:#at:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6353
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6354
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6355
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6356
                             with:(Array compiledMethodAt:#at:put:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6357
    "
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6358
!
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6359
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6360
browseMethods:aList title:aString
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6361
    "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
  6362
     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
  6363
     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
  6364
     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
  6365
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6366
    ^ self
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6367
        browseMethods:aList
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6368
        title:aString
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6369
        sort:true
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6370
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6371
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6372
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6373
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6374
        browseMethods:#('Object printOn:' 'Collection add:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6375
        title:'some methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6376
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6377
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6378
        browseMethods:#('Behavior new:' 'Setclass new:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6379
        title:'some new: methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6380
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6381
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6382
        browseMethods:(Array with:(Object compiledMethodAt:#printOn:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6383
                             with:(Collection compiledMethodAt:#add:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6384
                             with:(Object class compiledMethodAt:#initialize))
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6385
        title:'some methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6386
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6387
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6388
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6389
    "Modified: 1.11.1996 / 16:30:17 / cg"
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6390
!
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6391
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6392
browseMethods:aList title:aString sort:doSort
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6393
    "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
  6394
     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
  6395
     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
  6396
     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
  6397
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6398
    |l|
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6399
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6400
    (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
  6401
        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
  6402
        ^ nil
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6403
    ].
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6404
    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
  6405
    l := l collect:[:entry |
15513
bbe70d563ae2 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15499
diff changeset
  6406
        |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
  6407
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6408
        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
  6409
            entry
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6410
        ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6411
            cls := entry mclass.
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6412
            cls isNil ifTrue:[
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6413
                '??? unbound'
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6414
            ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6415
                cls isJavaClass ifTrue:[
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6416
                    clsName := 'JAVA::' , cls fullName 
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6417
                ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6418
                    clsName := cls name
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6419
                ].
7915
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6420
                (cls selectorAtMethod:entry) isNil ifTrue:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6421
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6422
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6423
                    , '???' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6424
                ] ifFalse:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6425
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6426
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6427
                    , (entry printStringForBrowserWithSelector:(cls selectorAtMethod:entry) inClass:cls)
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6428
                ]
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6429
            ]
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6430
        ]
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6431
      ].
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6432
        
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6433
    doSort ifTrue:[l sort].
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6434
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6435
    ^ 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
  6436
        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
  6437
        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
  6438
        arg:l 
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6439
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6440
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6441
     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
  6442
        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
  6443
        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
  6444
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6445
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6446
        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
  6447
        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
  6448
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6449
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6450
        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
  6451
                             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
  6452
                             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
  6453
        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
  6454
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6455
    "
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6456
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6457
    "Modified: / 17-06-1996 / 17:07:46 / stefan"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6458
    "Modified: / 05-03-2007 / 16:25:25 / cg"
2826
9d7f11697806 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  6459
!
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6460
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6461
browseMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6462
    "launch a browser for all instance- and classmethods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6463
     and all its subclasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6464
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6465
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6466
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6467
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6468
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6469
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6470
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6471
    "Modified: 24.1.1997 / 19:44:00 / cg"
203
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
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6474
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6475
    "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
  6476
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6477
     where aBlock evaluates to true.
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  6478
     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
  6479
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6480
    |list|
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6481
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6482
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6483
     since this may take a long time, lower my priority ...
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6484
    "
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6485
    Processor activeProcess 
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6486
        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
  6487
    do:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6488
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6489
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6490
    ^ self browseMethods:list title:title
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6491
!
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6492
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6493
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6494
    "launch a browser for all instance- (if wantInst is true) and/or
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6495
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6496
     where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6497
     The block is called with 3 arguments, class, method and selector."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6498
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6499
    |list|
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6500
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6501
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6502
     since this may take a long time, lower my priority ...
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6503
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6504
    Processor activeProcess 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6505
        withPriority:Processor activePriority-1 to:Processor activePriority
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6506
    do:[
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6507
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6508
        list size == 0 ifTrue:[warnBlock value].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6509
    ].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6510
    ^ self browseMethods:list title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6511
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6512
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6513
browseMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6514
    "launch a browser for all instance- and classmethods from 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6515
     all classes in aCollectionOfClasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6516
     The block is called with 3 arguments, class, method and seelctor."
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6517
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6518
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6519
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6520
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6521
        class:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6522
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6523
        title:title
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6524
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6525
    "Modified: 24.1.1997 / 19:44:17 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6526
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6527
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6528
browseMethodsIn:aCollectionOfClasses where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6529
    "launch a browser for all instance- and classmethods from 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6530
     all classes in aCollectionOfClasses where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6531
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6532
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6533
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6534
        browseMethodsIn:aCollectionOfClasses 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6535
        inst:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6536
        class:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6537
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6538
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6539
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6540
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6541
    "Modified: 24.1.1997 / 19:44:17 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6542
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6543
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6544
browseMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6545
    "launch a browser for all instance- and classmethods in aClass 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6546
     where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6547
     The block is called with 3 arguments, class, method and seelctor."
93
claus
parents: 90
diff changeset
  6548
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6549
    ^ self browseMethodsIn:(Array with:aClass) where:aBlock title:title
93
claus
parents: 90
diff changeset
  6550
!
claus
parents: 90
diff changeset
  6551
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6552
browseMethodsWhere:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6553
    "launch a browser for all methods where aBlock returns true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6554
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6555
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6556
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6557
        browseMethodsIn:(Smalltalk allClasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6558
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6559
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6560
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6561
    "Modified: 24.1.1997 / 19:44:30 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6562
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6563
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6564
browseMethodsWhere:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6565
    "launch a browser for all methods where aBlock returns true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6566
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6567
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6568
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6569
        browseMethodsIn:(Smalltalk allClasses) 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6570
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6571
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6572
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6573
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6574
    "Modified: 24.1.1997 / 19:44:30 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6575
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6576
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6577
findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6578
    "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
  6579
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6580
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6581
    |list checkedClasses checkBlock nClasses 
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6582
     nClassesDone oldPercentage newPercentage nClassesSinceLastPercentage bulkSize|
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6583
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6584
    checkedClasses := IdentitySet new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6585
    list := OrderedCollection new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6586
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6587
    checkBlock := [:cls |
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6588
        (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
  6589
            (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6590
                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
  6591
            ] ifFalse:[
11941
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6592
                aBlock numArgs == 1 ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6593
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6594
                        (aBlock value:method) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6595
                            list add:method "/ (cls name , ' ' , sel)
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6596
                        ]
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6597
                    ].
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6598
                ] ifFalse:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6599
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6600
                        (aBlock value:cls value:method value:sel) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6601
                            list add:method "/ (cls name , ' ' , sel)
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6602
                        ]
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6603
                    ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6604
                ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6605
                checkedClasses add:cls.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6606
            ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6607
        ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6608
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6609
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6610
    nClasses := aCollectionOfClasses size.
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6611
    nClassesDone := 0.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6612
    oldPercentage := 0.
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6613
    nClassesSinceLastPercentage := 0.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6614
    bulkSize := (nClasses // 30) max:10. "/ roughly every 3%.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6615
    
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6616
    aCollectionOfClasses do:[:aClass |
3008
1a45c272b13f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2901
diff changeset
  6617
        (aClass notNil and:[aClass isObsolete not]) ifTrue:[
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6618
            nClassesSinceLastPercentage := nClassesSinceLastPercentage + 1.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6619
            
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6620
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6621
             output disabled - it slows down things too much (when searching for
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6622
             implementors or senders)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6623
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6624
            wantInst ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6625
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6626
                checkBlock value:aClass
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6627
            ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6628
            wantClass ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6629
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6630
                checkBlock value:(aClass class)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6631
            ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6632
            nClassesSinceLastPercentage > bulkSize ifTrue:[
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6633
                "/ Processor yield
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6634
                newPercentage := nClassesDone * 100 // nClasses.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6635
                newPercentage ~= oldPercentage ifTrue:[
17440
930529441c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  6636
                    ProgressNotification progressPercentage:newPercentage statusInfo:('%1 found' bindWith:list size).
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6637
                    oldPercentage := newPercentage.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6638
                ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6639
                nClassesSinceLastPercentage := 0.
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6640
            ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6641
        ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6642
        nClassesDone := nClassesDone + 1.
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6643
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6644
    ^ list
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6645
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6646
    "Modified: / 14-03-2017 / 12:05:57 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6647
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6648
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6649
findMethodsIn:aCollectionOfClasses where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6650
    "return all instance- and classmethods 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6651
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6652
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6653
    ^ self
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6654
        findMethodsIn:aCollectionOfClasses 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6655
        inst:true
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6656
        class:true      
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6657
        where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6658
! !
93
claus
parents: 90
diff changeset
  6659
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6660
!SystemBrowser class methodsFor:'startup with query'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6661
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6662
askThenBrowseClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6663
    self getClassThenPerform:#browseClass:
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6664
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6665
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6666
     SystemBrowser askThenBrowseClass
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6667
     Tools::NewSystemBrowser askThenBrowseClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6668
    "
93
claus
parents: 90
diff changeset
  6669
!
claus
parents: 90
diff changeset
  6670
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6671
askThenBrowseClassHierarchy
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6672
    self getClassThenPerform:#browseClassHierarchy:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6673
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6674
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6675
     SystemBrowser askThenBrowseClassHierarchy
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6676
     Tools::NewSystemBrowser askThenBrowseClassHierarchy
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6677
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6678
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6679
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6680
askThenBrowseFullClassProtocol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6681
    self getClassThenPerform:#browseFullClassProtocol:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6682
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6683
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6684
     SystemBrowser askThenBrowseFullClassProtocol
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6685
     Tools::NewSystemBrowser askThenBrowseFullClassProtocol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6686
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6687
! !
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6688
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6689
!SystemBrowser class methodsFor:'utilities'!
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6690
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6691
askForClass
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6692
    ^ self askForClassWithFilter:nil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6693
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6694
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6695
     Tools::NewSystemBrowser askForClass   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6696
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6697
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6698
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6699
askForClassName
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6700
    ^ self askForClassNameWithFilter:nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6701
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6702
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6703
     Tools::NewSystemBrowser askForClassName   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6704
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6705
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6706
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6707
askForClassNameWithFilter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6708
    self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6709
        askForClassToSearch:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6710
        single:true
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6711
        msgTail:''
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6712
        resources:(self classResources)
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6713
        filter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6714
        forBrowser:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6715
        thenDo:[:className :single :doWhat |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6716
            ^ className
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6717
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6718
    ^ nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6719
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6720
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6721
     Tools::NewSystemBrowser askForClassName   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6722
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6723
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6724
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6725
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
  6726
    "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
  6727
     to search for a class in an existing browser.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6728
     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
  6729
     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
  6730
     Moved from instance protocol for better reusability."
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6731
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6732
    |box boxLabel title okText className canFind doWhat classNameHolder updateList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6733
     allClasses classNamesInChangeSet
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6734
     allNames allFullNames initialShortNames initialFullNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6735
     colorizedFullNames colorizedShortNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6736
     resources check showingWhatLabel showFullNameHolder genShortNameListEntry|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6737
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6738
    resources := resourcesOrNil ? self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6739
    showFullNameHolder := (LastClassSearchBoxShowedFullName ? false) asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6740
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6741
    doWhat := doWhatByDefault.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6742
    canFind := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6743
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6744
    title := ''.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6745
    boxLabel := (resources string:'Select a class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6746
    okText := 'OK'.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6747
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6748
    genShortNameListEntry :=
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6749
        [:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6750
            |ns|
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6751
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6752
            cls isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6753
                nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6754
            ] ifFalse:[
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6755
                (filterOrNil notNil and:[ (filterOrNil value:cls) not]) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6756
                    nil
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6757
                ] ifFalse:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6758
                    ns := cls topNameSpace name.
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6759
                    ns = 'Smalltalk'
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6760
                        ifTrue:[ ns := '' ]
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6761
                        ifFalse:[ns := ' (in ',ns,')'].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6762
                    cls nameWithoutNameSpacePrefix,ns
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6763
                ]
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6764
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6765
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6766
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6767
    classNamesInChangeSet := ChangeSet current changedClasses
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6768
                                select: (filterOrNil ? [:cls | true])
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6769
                                thenCollect:[:each | each theNonMetaclass name].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6770
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6771
    initialFullNames := self visitedClassNamesHistory.
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6772
    (filterOrNil notNil) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6773
        initialFullNames := initialFullNames select:[:nm | filterOrNil value:(Smalltalk at:nm)].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6774
    ].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6775
    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
  6776
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6777
    colorizedFullNames := initialFullNames collect:[:clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6778
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6779
                                    clsName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6780
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6781
                                    clsName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6782
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6783
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6784
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6785
    colorizedShortNames := initialShortNames with:initialFullNames collect:[:shortName :clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6786
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6787
                                    shortName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6788
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6789
                                    shortName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6790
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6791
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6792
13046
f3c72a68d92a title of class search box
Claus Gittinger <cg@exept.de>
parents: 13037
diff changeset
  6793
    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
  6794
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6795
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6796
                enterBoxForClassWithCodeSelectionTitle:title withCRs
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6797
                withList:(showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames])
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6798
                okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6799
                forBrowser:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6800
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6801
    box label:boxLabel.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6802
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6803
    allClasses := Smalltalk allClasses copyAsOrderedCollection.
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6804
    filterOrNil notNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6805
        allClasses := allClasses select: filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6806
    ].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6807
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6808
    allNames := (allClasses
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6809
                    collect:[:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6810
                        |ns nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6811
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6812
                        ns := cls topNameSpace name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6813
                        ns = 'Smalltalk'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6814
                            ifTrue:[ ns := '' ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6815
                            ifFalse:[ns := ' (in ',ns,')'].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6816
                        cls isNameSpace ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6817
                            nm := cls nameWithoutNameSpacePrefix,ns,' (Namespace)'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6818
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6819
                            nm := cls nameWithoutNameSpacePrefix,ns
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6820
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6821
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6822
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6823
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6824
                            nm
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6825
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6826
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6827
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6828
    allFullNames := (allClasses 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6829
                    collect:[:cls | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6830
                        |nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6831
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6832
                        nm := cls name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6833
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6834
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6835
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6836
                            nm
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6837
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6838
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6839
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6840
    updateList := [
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6841
            |nameToSearch list namesStarting namesIncluding lcName nameList|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6842
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6843
            (nameToSearch := classNameHolder value withoutSeparators) isEmpty ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6844
                showingWhatLabel label:(resources string:'Recently visited:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6845
                list := (showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames]).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6846
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6847
                showingWhatLabel label:(resources string:'Matching classes:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6848
                nameList := showFullNameHolder value
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6849
                                ifTrue:[ allFullNames ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6850
                                ifFalse:[ allNames ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6851
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6852
                lcName := nameToSearch asLowercase.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6853
                (lcName includesString:'::') ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6854
                    list := OrderedCollection new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6855
                    allClasses doWithIndex:[:cls :idx |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6856
                        |isIncluded|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6857
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6858
                        (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6859
                            isIncluded := (lcName match:cls name asLowercase)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6860
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6861
                            isIncluded := (cls name includesString:lcName caseSensitive:false)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6862
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6863
                        isIncluded ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6864
                            list add:(nameList at:idx)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6865
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6866
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6867
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6868
                    (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6869
                        list := nameList select:[:nm | lcName match:nm asLowercase]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6870
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6871
                        namesIncluding := nameList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6872
                                            select:[:nm |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6873
                                                "/ nm asLowercase startsWith:lcName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6874
                                                nm asLowercase includesString:lcName caseSensitive:false
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6875
                                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6876
                        namesStarting := namesIncluding select:[:nm | nm asLowercase startsWith:lcName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6877
                        list := namesStarting , {nil} , (namesIncluding \ namesStarting).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6878
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6879
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6880
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6881
            box listView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6882
                list:list;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6883
                scrollToLine:((list findFirst:[:line | (line ? '') startsWith:lcName]) max:1)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6884
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6885
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6886
    classNameHolder := '' asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6887
    box enterField
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6888
        model:classNameHolder;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6889
        immediateAccept:true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6890
    classNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6891
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6892
    box entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6893
    box action:[:aString | className := aString].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6894
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6895
    box panelView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6896
        addSubView:(showingWhatLabel := (Label label:(resources string:'Recently visited:')) adjust:#left) before:nil;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6897
        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
  6898
    showFullNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6899
    box enterField origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6900
    box listView origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6901
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6902
    box extent:(400 @ 350).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6903
    box open.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6904
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6905
    className isEmptyOrNil ifTrue:[^ nil "cancel"].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6906
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6907
    LastClassSearchBoxShowedFullName := showFullNameHolder value.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6908
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6909
    (className endsWith:$) ) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6910
        (className indexOfSubCollection:'(in ') == 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6911
            "/ a namespace
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6912
            className := (className copyTo:(className indexOfSubCollection:'(Name')-1) withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6913
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6914
            className := ((className copyFrom:(className indexOfSubCollection:'(in ')+4)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6915
                            copyButLast:1)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6916
                         , '::' , className asCollectionOfWords first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6917
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6918
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6919
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6920
    aBlock notNil ifTrue:[aBlock value:className optionalArgument:singleClass and:doWhat].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6921
    ^ className
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6922
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6923
    "Modified: / 23-07-2012 / 11:00:22 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6924
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6925
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6926
askForClassWithFilter:filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6927
    |className|
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6928
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6929
    className := self askForClassNameWithFilter:filterOrNil.
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6930
    className notEmptyOrNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6931
        ^ Smalltalk classNamed:className
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6932
    ].
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6933
    ^ nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6934
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6935
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6936
     Tools::NewSystemBrowser askForClass   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6937
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6938
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6939
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6940
classWithNameSimilarTo:className
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6941
    "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
  6942
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6943
    |allMatchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6944
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6945
    allMatchingClasses := self classesWithNameSimilarTo:className.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6946
    ^ allMatchingClasses firstIfEmpty:nil
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6947
!
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6948
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6949
classesWithNameSimilarTo:className
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6950
    "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
  6951
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6952
    ^ self classesWithNameSimilarTo:className from:nil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6953
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6954
    "Modified: / 22-08-2006 / 13:22:41 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6955
!
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6956
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6957
classesWithNameSimilarTo:className from:aNameSpaceOrNil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6958
    "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
  6959
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6960
    |nm lcName class allClasses triedDetectors triedMatchers allMatchingClasses
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6961
     prefNameSpaceOrNil prefLcNameSpace|
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6962
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6963
    prefNameSpaceOrNil := (aNameSpaceOrNil == Smalltalk) ifTrue:[ nil ] ifFalse:[aNameSpaceOrNil].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6964
12747
b59676921d61 refactored
Claus Gittinger <cg@exept.de>
parents: 12729
diff changeset
  6965
    nm := className withoutPrefix:'Smalltalk::'.
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6966
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6967
    prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6968
        class := prefNameSpaceOrNil at:nm asSymbol.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6969
        class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6970
        prefLcNameSpace := prefNameSpaceOrNil name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6971
    ].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6972
    class := Smalltalk at:nm asSymbol.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6973
    class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6974
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6975
    lcName := className asLowercase.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6976
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6977
    allClasses := Smalltalk allClasses.
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6978
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6979
    triedDetectors := OrderedCollection new.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6980
    triedDetectors add:[:cls | cls name asLowercase = lcName].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6981
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6982
    triedDetectors do:[:eachTry |
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6983
        |class|
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6984
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6985
        class := allClasses detect:eachTry ifNone:nil.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6986
        class notNil ifTrue:[^ Array with:class].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6987
    ].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6988
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6989
    triedMatchers := OrderedCollection new.
5018
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  6990
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase = lcName].      
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  6991
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase = lcName].      
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6992
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6993
    triedMatchers add:[:cls | cls name asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6994
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6995
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6996
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase includesString:lcName].      
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6997
    triedMatchers add:[:cls | cls name asLowercase includesString:lcName].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6998
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6999
    allMatchingClasses := IdentitySet new.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7000
    triedMatchers do:[:eachTry |
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7001
        |matchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7002
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7003
        matchingClasses := allClasses select:eachTry.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7004
"/        matchingClasses size == 1 ifTrue:[^ matchingClasses].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7005
        allMatchingClasses addAll:matchingClasses.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7006
    ].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7007
    allMatchingClasses isEmpty ifTrue:[^ #()].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7008
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7009
    allMatchingClasses := allMatchingClasses asOrderedCollection.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7010
    allMatchingClasses 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7011
        sort:[:a :b | 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7012
            |lcNameA lcNameB da db distA distB |
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7013
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7014
            lcNameA := a name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7015
            lcNameB := b name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7016
            prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7017
                a nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7018
                    lcNameA := a nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7019
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7020
                b nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7021
                    lcNameB := b nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7022
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7023
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7024
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7025
            distA := da := lcName levenshteinTo:lcNameA.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7026
            distB := db := lcName levenshteinTo:lcNameB.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7027
            "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
  7028
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7029
            (lcNameA startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7030
                distB := distB * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7031
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7032
            (lcNameB startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7033
                distA := distA * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7034
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7035
            distA < distB
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7036
        ].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7037
    ^ allMatchingClasses.
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7038
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7039
    "
6678
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7040
     self classesWithNameSimilarTo:'NewSystemBrowser'
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7041
     self classesWithNameSimilarTo:'Moose::MSEAbstractOperator'
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7042
    "
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7043
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7044
    "Created: / 22-08-2006 / 13:22:48 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7045
    "Modified: / 22-08-2006 / 14:53:38 / cg"
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7046
!
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7047
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7048
enterBoxForClassWithCodeSelectionTitle:title withList:listOrNil okText:okText forBrowser:aBrowserOrNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7049
    "convenient method: setup an enterBox with initial text taken
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7050
     from the codeview's selection."
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7051
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7052
    |sel box initialText superclass currentClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7053
     methods someMethod offeredClass anyClose closeName s usedGlobals list|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7054
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7055
    list := listOrNil.
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
    aBrowserOrNil notNil ifTrue:[    
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7058
        currentClass := aBrowserOrNil theSingleSelectedClass.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7059
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7060
        sel := aBrowserOrNil selectionInCodeView.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7061
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7062
            aBrowserOrNil selectedNamespacesValue doWithExit:[:eachNs :exit |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7063
                s := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7064
                (s knownAsSymbol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7065
                and:[(Smalltalk at:s asSymbol) isBehavior]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7066
                    "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7067
                    sel := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7068
                    exit value:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7069
                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7070
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7071
            (sel knownAsSymbol and:[currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7072
            and:[(currentClass theNonMetaclass privateClassesAt:sel asSymbol) notNil]]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7073
                "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7074
                sel := (currentClass theNonMetaclass privateClassesAt:sel asSymbol) name
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7075
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7076
                (sel knownAsSymbol and:[(Smalltalk at:sel asSymbol) isBehavior]) ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7077
                    "/ ignore it, if there is no class-name which comes close.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7078
                    anyClose := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7079
                    Smalltalk keysAndValuesDo:[:aGlobalName :aGlobal|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7080
                        aGlobal isBehavior ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7081
                            aGlobal isMeta ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7082
                                aGlobal name == aGlobalName ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7083
                                    ((aGlobalName startsWith:sel)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7084
                                    or:[(sel startsWith:aGlobalName)]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7085
                                        closeName isNil ifTrue:[closeName := aGlobalName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7086
                                        anyClose := true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7087
                                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7088
                                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7089
                            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7090
                        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7091
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7092
                    anyClose ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7093
                        sel := nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7094
                    ] ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7095
                        sel := closeName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7096
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7097
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7098
            ]
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
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7101
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7102
            initialText := sel asString withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7103
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7104
            aBrowserOrNil codeAspect == SyntaxHighlighter codeAspectMethod ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7105
                methods := aBrowserOrNil selectedMethodsValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7106
                methods size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7107
                    someMethod := methods first.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7108
                    usedGlobals := someMethod usedGlobals collect:[:eachVar | eachVar asSymbol].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7109
                    usedGlobals := usedGlobals select:[:eachVar | (Smalltalk at:eachVar) isBehavior].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7110
                    usedGlobals size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7111
                        list := list reject:[:each | usedGlobals includes:each ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7112
                        list := usedGlobals asOrderedCollection sort , list.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7113
                        offeredClass := Smalltalk at:usedGlobals first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7114
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7115
                        offeredClass := someMethod mclass
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
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7118
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7119
                (aBrowserOrNil navigationState isVersionDiffBrowser
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7120
                or:[aBrowserOrNil navigationState isClassDocumentationBrowser]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7121
                    offeredClass := currentClass.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7122
                    (offeredClass notNil and:[offeredClass isPrivate]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7123
                        offeredClass := offeredClass owningClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7124
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7125
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7126
                    (currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7127
                    and:[(superclass := currentClass superclass) notNil]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7128
                        offeredClass := superclass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7129
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7130
                ]
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
            offeredClass notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7133
                initialText := offeredClass theNonMetaclass name
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7134
            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7135
        ].
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
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7138
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7139
                enterBoxTitle:(self classResources string:title)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7140
                withList:list
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7141
                okText:(self classResources string:okText).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7142
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7143
    initialText notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7144
        box initialText:initialText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7145
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7146
    ^ box
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7147
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7148
    "Created: / 13-02-2000 / 20:56:18 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7149
    "Modified: / 27-07-2012 / 22:18:34 / cg"
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7150
    "Modified (comment): / 27-07-2017 / 12:58:02 / cg"
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7151
!
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
enterBoxTitle:title withList:aListOrNil okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7154
    "convenient method: setup enterBox"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7155
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7156
    |box rsrcs|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7157
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7158
    aListOrNil notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7159
        box := ListSelectionBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7160
        "/ box := EnterBoxWithList new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7161
        box list:aListOrNil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7162
    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7163
        box := EnterBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7164
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7165
    rsrcs := self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7166
    box title:(rsrcs string:title) okText:(rsrcs string:okText).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7167
    ^ box
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
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7170
     self enterBoxTitle:'bla' withList:#('a' 'b' 'c') okText:'gaga'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7171
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7172
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7173
    "Created: / 13.2.2000 / 20:53:53 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7174
    "Modified: / 1.3.2000 / 11:15:09 / cg"
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
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7177
extractClassAndSelectorFrom:aString into:aBlock
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7178
    "given a string which can be either 'class>>sel' or
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7179
     'class sel', extract className and selector, and call aBlock with
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7180
     the result.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7181
     Useful to open browser on a method as selected in some documentation."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7182
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7183
    |sel clsName isMeta sep s|
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7184
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7185
    sel := aString.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7186
    sel notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7187
        sel := sel asString withoutSeparators.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7188
        ('*>>*' match:sel) ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7189
            sep := $>
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7190
        ] ifFalse:[
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7191
            ('*»*' match:sel) ifTrue:[
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7192
                sep := $»
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7193
            ] ifFalse:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7194
                ('* *' match:sel) ifTrue:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7195
                    sep := Character space
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7196
                ]
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7197
            ].
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7198
        ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7199
        sep notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7200
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7201
             extract class/sel from selection
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7202
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7203
            s := ReadStream on:sel.
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7204
            clsName := (s upTo:sep) withoutSeparators.
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7205
            [s peek == sep] whileTrue:[s next].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7206
            sel := (s upToEnd) withoutSeparators.
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7207
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7208
            (clsName endsWith:' class') ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7209
                isMeta := true.
12713
7cccc4a7733c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  7210
                clsName := clsName copyButLast:6 "copyTo:(clsName size - 5)"
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7211
            ] ifFalse:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7212
                isMeta := false
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7213
            ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7214
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7215
    ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7216
    aBlock value:clsName value:sel value:isMeta
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7217
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7218
    "Modified: / 17.6.1996 / 16:52:14 / stefan"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7219
    "Created: / 6.2.2000 / 00:51:51 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7220
    "Modified: / 6.2.2000 / 00:56:43 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7221
!
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7222
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7223
extractSelectorFrom:aString
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7224
    "given an arbitrary string, try to extract a useful selector.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7225
     Useful to open browser on a selected code fragment."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7226
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7227
    |s sel sel2 t idx|
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7228
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7229
    aString isEmptyOrNil ifTrue:[^ nil].
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7230
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7231
    (idx := aString indexOf:$») ~~ 0 ifTrue:[
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7232
        s := (aString copyFrom:idx+1) withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7233
        s isEmpty ifTrue:[^ nil]. 
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7234
    ] ifFalse:[    
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7235
        s := aString asString string withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7236
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7237
    sel := s asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7238
    sel isNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7239
        sel := s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7240
    ] ifFalse:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7241
        (sel endsWith:$:) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7242
            ^ sel.     
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7243
        ].
6705
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7244
    ].
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7245
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7246
    t := Parser selectorInExpression:sel.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7247
    t notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7248
        sel := t
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7249
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7250
    (sel = s or:[sel isNil or:[t == #'>>']]) ifTrue:[
16863
d9e632f16155 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16847
diff changeset
  7251
        "oops - that's probably not what we want here ..."
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7252
        self extractClassAndSelectorFrom:s into:[:c :s :m |
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7253
            sel := s
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7254
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7255
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7256
    s := sel asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7257
    s notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7258
        ^ s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7259
    ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7260
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7261
    (sel startsWith:$#) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7262
        sel2 := sel copyFrom:2.
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7263
        ((sel2 startsWith:$') and:[(sel2 endsWith:$') and:[sel2 size > 2]]) ifTrue:[
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7264
            sel2 := (sel2 copyFrom:2) copyButLast:1
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7265
        ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7266
        (sel2 := sel2 asSymbolIfInterned) notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7267
            ^ sel2.
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7268
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7269
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7270
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7271
    ^ sel
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7272
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7273
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7274
     self extractSelectorFrom:'at:put:'      
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7275
     self extractSelectorFrom:'#at:put:'                       
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7276
     self extractSelectorFrom:'#''at:put:'''                       
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7277
     self extractSelectorFrom:'at:something put:someValue'     
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7278
     self extractSelectorFrom:'self at:something put:someValue'
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7279
     self extractSelectorFrom:'(self at:something put:someValue)' 
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7280
     self extractSelectorFrom:'[self at:something put:someValue] value' 
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7281
     self extractSelectorFrom:'Array » at:put:' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7282
     self extractSelectorFrom:'Array>>at:put:' 
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7283
     self extractSelectorFrom:'Array>>#at:put:' 
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7284
     self extractSelectorFrom:'Array>>#''at:put:''' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7285
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7286
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7287
    "Created: / 06-02-2000 / 00:49:44 / cg"
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7288
    "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
  7289
!
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7290
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7291
getClassThenPerform:aSelector
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7292
    |classNameEntered classEntered enterBox resources|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7293
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7294
    "/ new Code:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7295
    classNameEntered := self askForClassName.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7296
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7297
    "/ old Code:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7298
"/    resources := self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7299
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7300
"/    enterBox := EnterBox title:(self classResources stringWithCRs:'Browse which class:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7301
"/    enterBox okText:(resources string:'Browse').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7302
"/    enterBox entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7303
"/    enterBox action:[:className | classNameEntered := className].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7304
"/    enterBox showAtPointer.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7305
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7306
    classNameEntered notEmptyOrNil ifTrue:[   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7307
        classEntered := Smalltalk classNamed:classNameEntered.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7308
        classEntered isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7309
            self warn:(resources string:'No such class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7310
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7311
            self perform:aSelector with:classEntered  
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7312
        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7313
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7314
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7315
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7316
     SystemBrowser getClassThenPerform:#browseClass:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7317
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7318
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7319
    "Modified: / 10-08-2006 / 12:54:20 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7320
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7321
6560
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7322
resourceEditorClassFor:aResource 
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7323
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7324
     return an appropriate editor class."
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7325
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7326
    (aResource == #canvas) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7327
        ^ UIPainter
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7328
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7329
    (aResource == #menu) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7330
        ^ MenuEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7331
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7332
    ((aResource == #image) or:[aResource == #fileImage]) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7333
        ^ ImageEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7334
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7335
    (aResource == #help) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7336
        ^ UIHelpTool
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7337
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7338
    (aResource == #tableColumns) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7339
        ^ DataSetBuilder
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7340
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7341
    (aResource == #tabList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7342
        ^ TabListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7343
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7344
    (aResource == #hierarchicalList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7345
        ^ HierarchicalListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7346
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7347
    ^ nil
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7348
!
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7349
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7350
resourceEditorClassForResources:resources
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7351
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7352
     return an appropriate editor class."
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7353
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7354
    resources keysDo:[:eachResource |
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7355
        |editor|
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7356
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7357
        editor := self resourceEditorClassFor:eachResource.
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7358
        editor notNil ifTrue:[ ^ editor].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7359
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7360
    ^ nil
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7361
! !
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7362
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7363
!SystemBrowser::BrowserHistoryEntry methodsFor:'accessing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7364
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7365
className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7366
    "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
  7367
13947
dd203de7c75a class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13921
diff changeset
  7368
    ^ className ? '*anonymous*'
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7369
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7370
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7371
className:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7372
    "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
  7373
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7374
    className := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7375
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7376
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7377
className:classNameArg meta:metaArg selector:selectorArg
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7378
    className := classNameArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7379
    meta := metaArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7380
    selector := selectorArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7381
!
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7382
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7383
icon
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7384
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7385
    ^nil
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7386
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7387
    "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
  7388
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7389
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7390
label
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7391
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7392
    ^self displayString
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7393
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7394
    "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
  7395
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7396
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7397
meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7398
    "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
  7399
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7400
    ^ meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7401
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7402
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7403
meta:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7404
    "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
  7405
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7406
    meta := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7407
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7408
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7409
selector
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7410
    "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
  7411
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7412
    ^ selector
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7413
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7414
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7415
selector:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7416
    "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
  7417
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7418
    selector := something.
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7419
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7420
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7421
theClass
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7422
    ^ Smalltalk at:className asSymbol
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7423
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7424
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7425
!SystemBrowser::BrowserHistoryEntry methodsFor:'comparing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7426
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7427
= anEntry
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7428
    ^ className = anEntry className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7429
      and:[meta = anEntry meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7430
      and:[selector = anEntry selector]]
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7431
! !
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7432
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7433
!SystemBrowser::BrowserHistoryEntry methodsFor:'displaying'!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7434
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7435
displayOn:aGCOrStream
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7436
    | cls name |
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7437
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7438
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
17432
c15b22dc05c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17404
diff changeset
  7439
    "/ 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
  7440
    (aGCOrStream isStream) ifFalse:[
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7441
        ^ super displayOn:aGCOrStream
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7442
    ].
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7443
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7444
    cls := self theClass.
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7445
    name := cls notNil ifTrue:[cls nameInBrowser] ifFalse:[className].
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7446
    name printOn:aGCOrStream.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7447
    meta ifTrue:[
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7448
        "/ aGCOrStream emphasis:#bold.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7449
        aGCOrStream nextPutAll:' class'.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7450
        "/ aGCOrStream emphasis:nil.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7451
    ].
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7452
    selector notNil ifTrue:[ 
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7453
        aGCOrStream
18317
436c9d4c5603 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 18302
diff changeset
  7454
            nextPutAll:' » ';
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7455
            bold;
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7456
            nextPutAll:selector;
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7457
            normal.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7458
    ].
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7459
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7460
    "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
  7461
    "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
  7462
    "Modified: / 20-06-2017 / 08:59:26 / cg"
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7463
! !
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7464
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  7465
!SystemBrowser class methodsFor:'documentation'!
93
claus
parents: 90
diff changeset
  7466
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7467
version
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7468
    ^ '$Header$'
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7469
!
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7470
8851
287f3e03a645 changed: #iconForClass:
Claus Gittinger <cg@exept.de>
parents: 8759
diff changeset
  7471
version_CVS
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7472
    ^ '$Header$'
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7473
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7474
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7475
version_SVN
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7476
    ^ '$Id$'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  7477
! !
4112
ed7af6707ad7 emphasisForChangedCode
tm
parents: 3834
diff changeset
  7478
12475
469fd10da830 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12073
diff changeset
  7479
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  7480
SystemBrowser initialize!