SystemBrowser.st
author Claus Gittinger <cg@exept.de>
Fri, 15 Jun 2018 04:00:37 +0200
changeset 18220 d1ebaddf1100
parent 18157 f8144e0ca395
child 18283 2df6fdc3f068
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: Tools::CheckinInfoDialog class changed: #windowSpec
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
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
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
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   533
    (resources includesKey:#obsolete) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   534
        ^ self deprecatedMethodIcon
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   535
    ].
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   536
    (resources includesKey:#canvas) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   537
        ^ self canvasIcon
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:#menu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   540
        ^ self menuIcon
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:#image) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   543
        ^ self imageIcon
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:#fileImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   546
        ^ self fileImageIcon
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:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   549
        ^ self programImageIcon
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:#help) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   552
        ^ self helpIcon
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:#programMenu) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   555
        ^ self programMenuIcon
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:#tableColumns) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   558
        ^ self tableColumnsIcon 
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:#tabList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   561
        ^ self tabListIcon 
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:#hierarchicalList) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   564
        ^ self hierarchicalListIcon 
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:#programImage) ifTrue:[
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   567
        ^ self programImageIcon 
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
    ^ nil
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   570
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
   571
    "Created: / 17-08-2006 / 09:08:11 / cg"
3240
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   572
! !
34f017469465 allow for some colors to be parametrized (Timos red-green blindness)
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   573
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   574
!SystemBrowser class methodsFor:'dialogs'!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   575
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   576
askForClassNameMatching:matchStringArg inEnvironment:anEnvironmentOrClassOrNil for:aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   577
    "open a dialog to ask for a class name.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   578
     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
   579
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   580
    |classNames caselessMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   581
     substringMatchingNames caselessSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   582
     caselessWithoutPrefixSubstringMatchingNames
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   583
     lcMatchString subMatch lcSubMatch box className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   584
     needSearch cls env searchBlock searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   585
     idx pref aMatchString allNames sortedBySpellingDistance msg resources|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   586
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   587
    resources := self classResources.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   588
    env := anEnvironmentOrClassOrNil ? Smalltalk.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   589
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   590
    aMatchString := matchStringArg.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   591
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   592
    "/ 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
   593
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   594
    (aMatchString includesString:'::') ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   595
        "/ pref := aMatchString upTo:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   596
        idx := aMatchString lastIndexOf:$:.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   597
        pref := aMatchString copyTo:idx-2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   598
        pref includesMatchCharacters ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   599
            "/ search all in Smalltalk
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   600
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   601
            cls := Smalltalk at:pref asSymbol ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   602
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   603
                env := cls.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   604
                aMatchString := aMatchString copyFrom:pref size + 1 + 2.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   605
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   606
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   607
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   608
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   609
    classNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   610
    caselessMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   611
    substringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   612
    caselessSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   613
    caselessWithoutPrefixSubstringMatchingNames := Set new.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   614
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   615
    lcMatchString := aMatchString asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   616
    needSearch := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   617
    aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   618
        subMatch := '*' , aMatchString , '*'.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   619
        lcSubMatch := subMatch asLowercase.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   620
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   621
        "/ 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
   622
        className := aMatchString asSymbolIfInterned.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   623
        className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   624
            env isNameSpace ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   625
                cls := env at:className ifAbsent:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   626
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   627
                cls := env privateClassesAt:className.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   628
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   629
            (cls notNil and:[cls isBehavior]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   630
                needSearch := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   631
            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   632
        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   633
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   634
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   635
    needSearch ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   636
        searchBlock := [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   637
            |thisName|
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
            "/ use dotted names for java
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   640
            aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   641
                thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   642
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   643
                thisName := aClass name
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   644
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   645
            (lcMatchString match:aClass name asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   646
                caselessWithoutPrefixSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   647
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   648
            aClass nameWithoutPrefix ~= aClass name ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   649
                (lcMatchString match:aClass nameWithoutPrefix 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
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   653
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   654
            (aMatchString match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   655
                classNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   656
            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   657
                (lcMatchString match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   658
                    caselessMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   659
                ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   660
                    subMatch notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   661
                        (subMatch match:thisName) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   662
                            substringMatchingNames 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
                            (lcSubMatch match:thisName asLowercase) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   665
                                caselessSubstringMatchingNames add:thisName
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   666
                            ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   667
                        ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   668
                    ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   669
                ]
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
        (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   674
            env allClassesDo:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   675
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   676
            env allPrivateClasses do:searchBlock
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   677
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   678
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   679
        sortedBySpellingDistance := false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   680
        "/ if nothing matched - try caseless matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   681
        classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   682
            classNames := caselessMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   683
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   684
            "/ if nothing matched - try substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   685
            classNames size == 0 ifTrue:[
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
   686
                aMatchString isUppercaseFirst ifTrue:[
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   687
                    classNames := substringMatchingNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   688
                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   689
                "/ if nothing matched - try caseless substring matches
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   690
                classNames size == 0 ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   691
                    classNames := caselessSubstringMatchingNames.
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 best fitting
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
                        aMatchString includesMatchCharacters ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   696
                            allNames := SortedCollection sortBlock:[:a :b | a value > b value].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   697
                            searchBlock2 :=
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   698
                                [:aClass |
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   699
                                    |thisName dist|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   700
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   701
                                    aClass isJavaClass ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   702
                                        thisName := aClass displayString. "/ fullName copyReplaceAll:$/ with:$.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   703
                                    ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   704
                                        thisName := aClass name
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   705
                                    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   706
                                    dist := thisName asLowercase spellAgainst:lcMatchString.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   707
                                    (thisName asLowercase startsWith:lcMatchString) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   708
                                        dist := dist + (thisName size * 10).
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
                                    allNames add:(thisName -> dist).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   711
                                ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   712
                            (env == Smalltalk or:[env isNameSpace]) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   713
                                env allClassesDo:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   714
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   715
                                env allPrivateClasses do:searchBlock2
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   716
                            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   717
                            classNames := (allNames copyTo:(allNames size min:40)) collect:[:each | each key].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   718
                            sortedBySpellingDistance := true.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   719
                        ]
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
                ]
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   722
            ]
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
        (classNames size == 0) ifTrue:[^ nil].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   726
        (classNames size == 1) ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   727
            className := classNames first
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   728
        ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   729
            |browseButton|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   730
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   731
            sortedBySpellingDistance ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   732
                classNames := classNames asArray sort.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   733
            ].
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
            aMatchString includesMatchCharacters ifTrue:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   736
                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
   737
            ] ifFalse:[
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   738
                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
   739
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   740
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   741
            box := self listBoxTitle:(resources string:msg with:matchStringArg) withCRs
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   742
                              okText:'OK'
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   743
                                list:classNames.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   744
            caselessWithoutPrefixSubstringMatchingNames notEmpty ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   745
                box initialText:(caselessWithoutPrefixSubstringMatchingNames first).
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   746
            ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   747
            box action:[:aString | className := aString].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   748
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   749
            browseButton := Button label:(resources string:'Browse All').
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   750
            browseButton action:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   751
                            |classes title|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   752
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   753
                            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
   754
                            classes := classNames collect:[:nm | Smalltalk classNamed:nm].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   755
                            aBrowserOrNil isNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   756
                                SystemBrowser
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   757
                                    browseClasses:classes 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   758
                                    label:title. 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   759
                            ] ifFalse:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   760
                                aBrowserOrNil
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   761
                                    spawnClassBrowserFor: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
                                    in:#newBrowser 
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   764
                                    select:false.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   765
                            ].
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   766
                            box hide.
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   767
                            box closeRequest
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   768
                         ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   769
            box addButton:browseButton before:box okButton.
14502
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   770
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   771
            aMatchString isLowercaseFirst ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   772
                |browseImplementorsButton|
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   773
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   774
                browseImplementorsButton := Button label:(resources string:'Implementors').
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   775
                browseImplementorsButton 
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   776
                    action:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   777
                        aBrowserOrNil isNil ifTrue:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   778
                            SystemBrowser browseImplementorsMatching:aMatchString
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   779
                        ] ifFalse:[
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   780
                            aBrowserOrNil
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   781
                                spawnMethodImplementorsBrowserFor:{ aMatchString } match:true in:#newBrowser.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   782
                        ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   783
                        box hide.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   784
                        box closeRequest
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   785
                     ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   786
                box addButton:browseImplementorsButton before:box okButton.
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   787
            ].
a5b6646c2db1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14413
diff changeset
   788
9157
c8166dbf5a5a changed: #askForClassNameMatching:inEnvironment:for:
Claus Gittinger <cg@exept.de>
parents: 9065
diff changeset
   789
            box minExtent:300@250.
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   790
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   791
            box open.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   792
            (box accepted not or:[className isNil]) ifTrue:[ "/ cancel
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   793
                ^ nil
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
        ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   796
    ].
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   797
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   798
    className notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   799
        "/ use slashed javaName for search.
14653
0ca0460ee16b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14587
diff changeset
   800
        className := className copyReplaceAll:$. with:$/ ifNone:className.
8702
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
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   803
"/    pref notNil ifTrue:[
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   804
"/        ^ pref , '::' , className
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
    ^ className
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   807
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   808
    "Modified: / 16-10-2006 / 11:36:20 / cg"
18149
19451c53de36 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17967
diff changeset
   809
    "Modified: / 24-05-2018 / 08:49:02 / Claus Gittinger"
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   810
!
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
listBoxTitle:title okText:okText list:aList
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   813
    "convenient method: setup a listBox & return it"
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
    |box resources|
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   816
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   817
    resources := self classResources.
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 := ListSelectionBox
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   820
                title:(resources string:title)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   821
                okText:(resources string:okText)
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   822
                action:nil.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   823
    box list:aList.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   824
    ^ box
13365
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   825
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   826
    "
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   827
     (self listBoxTitle:'hello world' okText:'aaa' list:#(1 2 3 4)) open
58156ff25996 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13319
diff changeset
   828
    "
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   829
! !
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
   830
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   831
!SystemBrowser class methodsFor:'image specs'!
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   832
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   833
abstractMethodIcon
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   834
    <resource: #programImage>
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   835
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   836
    ^ self padLockGrayMiniIcon
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   837
!
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
   838
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   839
addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   840
    <resource: #image>
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   841
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   842
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   843
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   844
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   845
    "
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   846
     self addBreakPointIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   847
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   848
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   849
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   850
    ^ Icon constantNamed:'SystemBrowser class addBreakPointIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   851
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   852
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   853
                width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   854
                height:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   855
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   856
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   857
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   858
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   859
                            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
   860
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   861
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   862
                            width:16;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   863
                            height:16;
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:'@@@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
   866
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   867
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   868
        ]
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   869
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   870
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   871
addBreakPointIcon2
6115
43cde28a3209 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6052
diff changeset
   872
    ^ XPToolbarIconLibrary addBreakPointIcon2
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   873
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   874
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   875
autoloadedClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   876
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   877
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   878
    ^ ToolbarIconLibrary autoloadedClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   879
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   880
    "Modified: / 20-07-2007 / 09:15:37 / cg"
4341
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   881
!
7bb51f44dca7 Icon for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 4332
diff changeset
   882
12040
5f2202d6fbec class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 11964
diff changeset
   883
breakPointedIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   884
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   885
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   886
    ^ self lineBreakPointedIcon
12504
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   887
    "/ ^ self breakPointedIcon2
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   888
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
   889
    "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
   890
!
abf0ab5f5941 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12475
diff changeset
   891
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   892
canvasIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   893
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   894
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   895
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   896
    "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
   897
     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
   898
    "
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   899
     ImageEditor openOnClass:self andSelector:#canvasIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   900
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   901
    ^ Icon constantNamed:'SystemBrowser class canvasIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   902
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   903
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   904
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   905
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   906
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   907
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   908
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   909
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   910
                            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
   911
                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
   912
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   913
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   914
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   915
                            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
   916
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   917
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   918
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   919
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   920
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   921
containerClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   922
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   923
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   924
    ^ ToolbarIconLibrary containerClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   925
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
   926
    "Modified: / 20-07-2007 / 09:14:54 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   927
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   928
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   929
defaultIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   930
    <resource: #image>
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   931
    "This resource specification was automatically generated
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   932
     by the ImageEditor of ST/X."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   933
    "Do not manually edit this!! If it is corrupted,
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   934
     the ImageEditor may not be able to read the specification."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   935
    "
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
   936
     self defaultIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   937
     ImageEditor openOnClass:self andSelector:#defaultIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   938
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   939
    ^ Icon constantNamed:'SystemBrowser class defaultIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   940
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   941
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   942
                width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   943
                height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   944
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   945
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   946
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   947
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   948
                            fromPackedString:'
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   949
@@@@@@@@@@@@@@@@@@@FY&Y&Y&X0@@@@@@@@@@YDQDQDQB@@@@@@@@@@A$QDQDQDH@@@@@@@@@@CH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   950
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y#@@@@@F@"H"HFDQDQDQH@@@@@@@@@@@L"H"H"
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   951
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
   952
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@B@B@ @@H@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   953
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@H@@ @@@@Hb');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   954
                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
   955
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   956
                            width:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   957
                            height:28;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   958
                            bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   959
                                        fromPackedString:'
3794
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
   960
??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
   961
QDBD%DQ@!!OH''HHRQEABT$QPP99]7\@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   962
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   963
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   964
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   965
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   966
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   967
deprecatedMethodIcon
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   968
    ^ self doNotEnterIcon
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   969
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   970
16893
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   971
disabledBreakpointIcon
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   972
    <resource: #programImage>
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   973
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   974
    ^ ToolbarIconLibrary breakpointDisabled9x9
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   975
!
9e4bc0a230d0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16863
diff changeset
   976
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   977
doNotEnterIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   978
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   979
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   980
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   981
    "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
   982
     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
   983
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   984
     self doNotEnterIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
   985
     ImageEditor openOnClass:self andSelector:#doNotEnterIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   986
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   987
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   988
    ^ Icon constantNamed:'SystemBrowser class doNotEnterIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   989
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   990
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   991
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   992
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   993
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   994
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   995
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   996
                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
   997
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   998
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
   999
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1000
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1001
                            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
  1002
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1003
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1004
        ]
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1005
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1006
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1007
emptyIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1008
    <resource: #image>
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1009
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1010
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1011
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1012
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1013
    "
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1014
     self emptyIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1015
     ImageEditor openOnClass:self andSelector:#emptyIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1016
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1017
    ^ Icon constantNamed:'SystemBrowser class emptyIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1018
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1019
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1020
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1021
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1022
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1023
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1024
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1025
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1026
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1027
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1028
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1029
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1030
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1031
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1032
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1033
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1034
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1035
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1036
    "Created: / 5.11.2001 / 09:39:54 / cg"
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1037
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1038
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1039
errorClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1040
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1041
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1042
    ^ ToolbarIconLibrary errorClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1043
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1044
    "Modified: / 20-07-2007 / 09:14:06 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1045
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1046
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1047
exceptionClassIcon
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1048
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1049
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1050
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1051
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1052
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1053
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1054
    "
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1055
     self exceptionClassIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1056
     ImageEditor openOnClass:self andSelector:#exceptionClassIcon
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1057
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1058
    "
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1059
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1060
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1061
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1062
    ^ ToolbarIconLibrary exceptionClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1063
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1064
    "Modified: / 20-07-2007 / 09:13:18 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1065
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1066
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1067
fileImageIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1068
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1069
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1070
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1071
    "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
  1072
     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
  1073
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1074
     self fileImageIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1075
     ImageEditor openOnClass:self andSelector:#fileImageIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1076
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1077
    ^ Icon constantNamed:'SystemBrowser class fileImageIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1078
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1079
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1080
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1081
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1082
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1083
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1084
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1085
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1086
                            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
  1087
                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
  1088
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1089
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1090
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1091
                            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
  1092
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1093
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1094
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1095
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1096
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1097
fullBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1098
    <resource: #programImage>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1099
15305
4ba4b14f6039 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15206
diff changeset
  1100
    ^ ToolbarIconLibrary fullBreakPoint9x9Icon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1101
    "/ ^ self fullBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1102
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1103
    "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
  1104
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1105
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1106
fullBreakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1107
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1108
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1109
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1110
    "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
  1111
     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
  1112
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1113
     self stopIcon1 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1114
     ImageEditor openOnClass:self andSelector:#stopIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1115
     Icon flushCachedIcons"
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
    ^ Icon constantNamed:'SystemBrowser stopIcon1'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1118
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1119
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1120
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1121
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1122
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1123
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1124
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1125
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1126
                            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
  1127
                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
  1128
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1129
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1130
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1131
                            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
  1132
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1133
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1134
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1135
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1136
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1137
fullBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1138
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1139
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1140
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1141
    "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
  1142
     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
  1143
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1144
     self stopIcon2 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1145
     ImageEditor openOnClass:self andSelector:#stopIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1146
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1147
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1148
    ^ Icon constantNamed:'SystemBrowser stopIcon2'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1149
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1150
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1151
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1152
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1153
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1154
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1155
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1156
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1157
                            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
  1158
                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
  1159
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1160
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1161
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1162
                            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
  1163
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1164
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1165
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1166
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1167
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1168
greenCheckIcon
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1169
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1170
     by the ImageEditor of ST/X."
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1171
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1172
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1173
     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
  1174
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1175
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1176
     self greenCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1177
     ImageEditor openOnClass:self andSelector:#greenCheckIcon
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1178
     Icon flushCachedIcons
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1179
    "
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1180
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1181
    <resource: #image>
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1182
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1183
    ^Icon
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1184
        constantNamed:'SystemBrowser class greenCheckIcon'
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1185
        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
  1186
            colorMapFromArray:#[0 0 0 126 190 126 0 127 0]
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  1187
            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
  1188
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1189
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1190
greenLockIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1191
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1192
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1193
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1194
    "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
  1195
     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
  1196
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1197
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1198
     self greenLockIcon inspect
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1199
     ImageEditor openOnClass:self andSelector:#greenLockIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1200
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1201
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1202
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1203
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  1204
    ^ self padLockGreenMiniIcon
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1205
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  1206
    "Modified: / 5.11.2001 / 09:40:12 / cg"
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1207
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1208
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1209
greenThumbUpIcon
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1210
    ^ ToolbarIconLibrary greenThumbUpIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1211
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1212
    "Modified: / 17-07-2011 / 10:03:34 / cg"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1213
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1214
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1215
greenThumbUpSmallIcon
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1216
    ^ ToolbarIconLibrary greenThumbUpSmallIcon
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:43 / cg"
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1219
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1220
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1221
greyCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1222
    <resource: #image>
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1223
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1224
     by the ImageEditor of ST/X."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1225
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1226
     the ImageEditor may not be able to read the specification."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1227
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1228
     self greyCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1229
     ImageEditor openOnClass:self andSelector:#greyCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1230
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1231
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1232
    ^ Icon constantNamed:'SystemBrowser class greyCheckIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1233
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1234
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1235
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1236
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1237
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1238
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1239
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1240
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1241
                            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
  1242
                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
  1243
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1244
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1245
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1246
                            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
  1247
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1248
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1249
        ]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1250
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1251
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1252
greyThumbUpIcon
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1253
    ^ ToolbarIconLibrary greyThumbUpIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1254
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1255
    "Modified: / 17-07-2011 / 10:04:06 / cg"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1256
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1257
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1258
helpIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1259
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1260
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1261
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1262
    "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
  1263
     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
  1264
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1265
     self helpIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1266
     ImageEditor openOnClass:self andSelector:#helpIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1267
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1268
    ^ Icon constantNamed:'SystemBrowser class helpIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1269
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1270
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1271
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1272
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1273
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1274
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1275
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1276
                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
  1277
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1278
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1279
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1280
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1281
                            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
  1282
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1283
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1284
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1285
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1286
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1287
hierarchicalListIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1288
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1289
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1290
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1291
    "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
  1292
     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
  1293
    "
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1294
     ImageEditor openOnClass:self andSelector:#hierarchicalListIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1295
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1296
    ^ Icon constantNamed:'SystemBrowser class hierarchicalListIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1297
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1298
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1299
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1300
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1301
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1302
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1303
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1304
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1305
                            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
  1306
                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
  1307
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1308
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1309
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1310
                            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
  1311
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1312
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1313
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1314
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1315
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1316
ignoredMethodIcon
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1317
    <resource: #programImage>
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1318
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1319
    ^ self padLockBlackMiniIcon
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1320
!
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1321
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1322
imageIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1323
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1324
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1325
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1326
    "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
  1327
     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
  1328
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1329
     self imageIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1330
     ImageEditor openOnClass:self andSelector:#imageIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1331
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1332
    ^ Icon constantNamed:'SystemBrowser class imageIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1333
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1334
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1335
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1336
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1337
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1338
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1339
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1340
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1341
                            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
  1342
                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
  1343
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1344
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1345
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1346
                            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
  1347
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1348
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1349
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1350
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1351
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1352
instVarOverlayXmlSpec
14390
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1353
    <resource: #image>
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1354
    "This resource specification was automatically generated
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1355
     by the ImageEditor of ST/X."
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1356
    "Do not manually edit this!! If it is corrupted,
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1357
     the ImageEditor may not be able to read the specification."
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1358
    "
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1359
     self instVarOverlayXmlSpec inspect
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1360
     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
  1361
     Icon flushCachedIcons"
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1362
    
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1363
    ^ 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
  1364
        ifAbsentPut:[
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1365
            (Depth2Image new)
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1366
                width:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1367
                height:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1368
                photometric:(#palette);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1369
                bitsPerSample:(#[ 2 ]);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1370
                samplesPerPixel:(1);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1371
                bits:(ByteArray 
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1372
                            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
  1373
                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
  1374
                mask:((ImageMask new)
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1375
                            width:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1376
                            height:16;
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1377
                            bits:(ByteArray 
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1378
                                        fromPackedString:'
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1379
@@@@@@@@@@@@@@@@BA@XFC@L[>[O8<=#[7X0CA XBA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1380
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14390
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1381
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1382
                            yourself);
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1383
                yourself
05d5e002f60d Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 14355
diff changeset
  1384
        ]
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1385
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  1386
7992
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1387
instrumentationIcon
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1388
    <resource: #programImage>
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1389
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1390
    ^ ToolbarIconLibrary pipette16x16Icon
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1391
!
425aa862d872 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  1392
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1393
lineBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1394
    <resource: #programImage>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1395
15305
4ba4b14f6039 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15206
diff changeset
  1396
    ^ ToolbarIconLibrary lineBreakPoint9x9Icon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1397
    "/ ^ self lineBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1398
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1399
    "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
  1400
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1401
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1402
lineBreakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1403
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1404
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1405
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1406
    "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
  1407
     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
  1408
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1409
     self breakPointedIcon1 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1410
     ImageEditor openOnClass:self andSelector:#breakPointedIcon1
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1411
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1412
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1413
    ^ Icon constantNamed:'SystemBrowser breakPointedIcon1'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1414
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1415
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1416
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1417
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1418
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1419
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1420
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1421
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1422
                            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
  1423
                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
  1424
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1425
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1426
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1427
                            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
  1428
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1429
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1430
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1431
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1432
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1433
lineBreakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1434
    <resource: #image>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1435
    "This resource specification was automatically generated
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1436
     by the ImageEditor of ST/X."
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1437
    "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
  1438
     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
  1439
    "
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1440
     self breakPointedIcon2 inspect
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1441
     ImageEditor openOnClass:self andSelector:#breakPointedIcon2
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1442
     Icon flushCachedIcons"
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1443
    
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1444
    ^ Icon constantNamed:'SystemBrowser breakPointedIcon2'
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1445
        ifAbsentPut:[
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1446
            (Depth4Image new)
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1447
                width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1448
                height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1449
                photometric:(#palette);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1450
                bitsPerSample:(#[ 4 ]);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1451
                samplesPerPixel:(1);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1452
                bits:(ByteArray 
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1453
                            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
  1454
                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
  1455
                mask:((ImageMask new)
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1456
                            width:13;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1457
                            height:11;
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1458
                            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
  1459
                            yourself);
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1460
                yourself
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1461
        ]
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1462
!
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  1463
16027
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1464
lineTracePointedIcon
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1465
    <resource: #programImage>
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1466
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1467
    ^ ToolbarIconLibrary lineTracePoint9x9Icon
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1468
!
36719009525a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16016
diff changeset
  1469
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1470
medium_methodEmptyInheritedIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1471
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1472
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1473
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1474
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1475
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1476
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1477
     self medium_methodEmptyInheritedIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1478
     ImageEditor openOnClass:self andSelector:#medium_methodEmptyInheritedIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1479
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1480
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1481
        constantNamed:'SystemBrowser class medium_methodEmptyInheritedIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1482
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1483
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1484
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1485
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1486
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1487
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1488
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1489
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1490
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1491
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1492
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1493
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1494
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1495
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1496
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1497
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1498
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1499
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1500
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1501
medium_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1502
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1503
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1504
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1505
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1506
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1507
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1508
     self medium_methodInheritedFromAboveAndRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1509
     ImageEditor openOnClass:self andSelector:#medium_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1510
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1511
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1512
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1513
        constantNamed:'SystemBrowser class medium_methodInheritedFromAboveAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1514
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1515
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1516
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1517
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1518
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1519
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1520
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1521
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1522
                            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
  1523
                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
  1524
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1525
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1526
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1527
                            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
  1528
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1529
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1530
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1531
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1532
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1533
medium_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1534
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1535
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1536
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1537
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1538
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1539
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1540
     self medium_methodInheritedFromAboveIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1541
     ImageEditor openOnClass:self andSelector:#medium_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1542
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1543
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1544
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1545
        constantNamed:'SystemBrowser class medium_methodInheritedFromAboveIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1546
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1547
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1548
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1549
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1550
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1551
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1552
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1553
                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
  1554
                colorMapFromArray:#[ 0 0 0 255 255 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1555
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1556
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1557
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1558
                            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
  1559
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1560
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1561
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1562
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1563
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1564
medium_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1565
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1566
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1567
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1568
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1569
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1570
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1571
     self medium_methodRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1572
     ImageEditor openOnClass:self andSelector:#medium_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1573
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1574
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1575
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1576
        constantNamed:'SystemBrowser class medium_methodRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1577
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1578
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1579
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1580
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1581
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1582
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1583
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1584
                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
  1585
                colorMapFromArray:#[ 0 0 0 255 127 127 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1586
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1587
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1588
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1589
                            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
  1590
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1591
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1592
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1593
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1594
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1595
menuIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1596
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1597
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1598
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1599
    "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
  1600
     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
  1601
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1602
     self menuIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1603
     ImageEditor openOnClass:self andSelector:#menuIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1604
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1605
    ^ Icon constantNamed:'SystemBrowser class menuIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1606
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1607
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1608
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1609
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1610
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1611
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1612
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1613
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1614
                            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
  1615
                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
  1616
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1617
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1618
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1619
                            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
  1620
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1621
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1622
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1623
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1624
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1625
methodEmptyInheritedIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1626
    ^ self small_methodEmptyInheritedIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1627
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1628
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1629
methodInheritedFromAboveAndRedefinedBelowIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1630
    ^ self small_methodInheritedFromAboveAndRedefinedBelowIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1631
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1632
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1633
methodInheritedFromAboveIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1634
    ^ self small_methodInheritedFromAboveIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1635
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1636
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1637
methodIsSubclassResponsibilityAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1638
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1639
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1640
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1641
    "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
  1642
     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
  1643
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1644
     self methodIsSubclassResponsibilityAndRedefinedBelowIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1645
     ImageEditor openOnClass:self andSelector:#methodIsSubclassResponsibilityAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1646
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1647
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1648
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1649
        constantNamed:'SystemBrowser class methodIsSubclassResponsibilityAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1650
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1651
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1652
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1653
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1654
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1655
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1656
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1657
                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
  1658
                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
  1659
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1660
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1661
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1662
                            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
  1663
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1664
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1665
        ]
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1666
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1667
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1668
methodIsSubclassResponsibilityIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1669
    <resource: #image>
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1670
    "This resource specification was automatically generated
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1671
     by the ImageEditor of ST/X."
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1672
    "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
  1673
     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
  1674
    "
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1675
     self methodIsSubclassResponsibilityIcon inspect
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1676
     ImageEditor openOnClass:self andSelector:#methodIsSubclassResponsibilityIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1677
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1678
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1679
    ^ Icon 
7968
1acda3f58974 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7915
diff changeset
  1680
        constantNamed:'SystemBrowser class methodIsSubclassResponsibilityIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1681
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1682
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1683
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1684
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1685
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1686
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1687
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1688
                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
  1689
                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
  1690
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1691
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1692
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1693
                            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
  1694
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1695
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1696
        ]
5761
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1697
!
b350e042dc9f Icons for subclassResponsibility and deprecated methods
Stefan Vogel <sv@exept.de>
parents: 5546
diff changeset
  1698
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1699
methodRedefinedBelowIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1700
    ^ self small_methodRedefinedBelowIcon
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1701
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1702
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1703
nameSpaceIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1704
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1705
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1706
    ^ ToolbarIconLibrary nameSpaceBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1707
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1708
    "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
  1709
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1710
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1711
notificationClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1712
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1713
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1714
    ^ ToolbarIconLibrary notificationClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1715
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1716
    "Modified: / 20-07-2007 / 09:11:21 / cg"
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1717
!
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1718
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1719
packageIcon
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1720
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1721
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1722
    ^ ToolbarIconLibrary smallYellowPackageIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1723
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1724
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1725
packageIconGraySmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1726
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1727
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1728
    ^ ToolbarIconLibrary smallGrayPackageIcon
6954
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1729
!
b10a2c15fee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6944
diff changeset
  1730
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1731
packageIconGreenSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1732
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1733
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1734
    ^ ToolbarIconLibrary smallGreenPackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1735
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1736
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1737
packageIconOrangeSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1738
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1739
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1740
    ^ ToolbarIconLibrary smallOrangePackageIcon
6925
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1741
!
388067acd009 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6913
diff changeset
  1742
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1743
packageIconSmall
8853
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1744
    <resource: #programImage>
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1745
a2a14e8871c0 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 8851
diff changeset
  1746
    ^ ToolbarIconLibrary smallYellowPackageIcon
6901
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1747
!
34d695317c51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6873
diff changeset
  1748
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1749
padLockBlackMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1750
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1751
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1752
    ^ XPToolbarIconLibrary padLockBlackMiniIcon
5997
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1753
!
a0654a5af9a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5928
diff changeset
  1754
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1755
padLockBlueMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1756
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1757
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1758
    ^ XPToolbarIconLibrary padLockBlueMiniIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1759
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1760
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1761
padLockGrayMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1762
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1763
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1764
    ^ GenericToolbarIconLibrary padLockGrayMiniIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1765
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1766
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1767
padLockGreenMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1768
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1769
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1770
    ^ GenericToolbarIconLibrary padLockGreenMiniIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1771
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1772
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1773
padLockRedMiniIcon
6333
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1774
    <resource: #programImage>
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1775
d5d28109866e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6303
diff changeset
  1776
    ^ GenericToolbarIconLibrary padLockRedMiniIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1777
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1778
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1779
privateMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1780
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1781
2748
80829f5a575d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2743
diff changeset
  1782
    ^ self padLockRedMiniIcon
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1783
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1784
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1785
programImageIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1786
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1787
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1788
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1789
    "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
  1790
     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
  1791
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1792
     self programImageIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1793
     ImageEditor openOnClass:self andSelector:#programImageIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1794
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1795
    ^ Icon constantNamed:#'SystemBrowser class programImageIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1796
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1797
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1798
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1799
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1800
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1801
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1802
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1803
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1804
                            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
  1805
                colorMapFromArray:#[ 0 0 0 25 77 77 51 255 255 128 128 0 128 77 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1806
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1807
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1808
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1809
                            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
  1810
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1811
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1812
        ]
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1813
!
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1814
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1815
programMenuIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1816
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1817
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1818
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1819
    "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
  1820
     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
  1821
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1822
     self programMenuIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1823
     ImageEditor openOnClass:self andSelector:#programMenuIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1824
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1825
    ^ Icon constantNamed:#'SystemBrowser class programMenuIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1826
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1827
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1828
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1829
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1830
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1831
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1832
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1833
                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
  1834
                colorMapFromArray:#[ 0 0 0 170 170 170 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1835
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1836
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1837
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1838
                            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
  1839
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1840
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1841
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1842
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1843
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1844
protectedMethodIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1845
    <resource: #programImage>
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1846
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1847
    ^ self padLockGreenMiniIcon
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1848
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1849
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1850
queryClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1851
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1852
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1853
    ^ ToolbarIconLibrary queryClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1854
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  1855
    "Modified: / 20-07-2007 / 09:10:32 / cg"
4308
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1856
!
9957b7ab92e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  1857
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1858
redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1859
    <resource: #image>
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1860
    "This resource specification was automatically generated
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1861
     by the ImageEditor of ST/X."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1862
    "Do not manually edit this!! If it is corrupted,
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1863
     the ImageEditor may not be able to read the specification."
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1864
    "
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1865
     self redCheckIcon inspect
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1866
     ImageEditor openOnClass:self andSelector:#redCheckIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1867
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1868
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1869
    ^ Icon constantNamed:#'SystemBrowser class redCheckIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1870
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1871
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1872
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1873
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1874
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1875
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1876
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1877
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1878
                            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
  1879
                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
  1880
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1881
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1882
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1883
                            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
  1884
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1885
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1886
        ]
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1887
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1888
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1889
redLockIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1890
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1891
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1892
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1893
    "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
  1894
     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
  1895
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1896
     self redLockIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1897
     ImageEditor openOnClass:self andSelector:#redLockIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1898
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1899
    ^ Icon constantNamed:#'SystemBrowser class redLockIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1900
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1901
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1902
                width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1903
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1904
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1905
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1906
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1907
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1908
                            fromPackedString:'@T@@AA@@AA@@EUP@EUP@EQP@EQP@EQP@EAP@AU@@@@@@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1909
                colorMapFromArray:#[ 0 0 0 255 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1910
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1911
                            width:9;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1912
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1913
                            bits:(ByteArray fromPackedString:'F@@$@BP@_ A>@G8@_ A>@G8@O@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1914
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1915
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1916
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1917
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  1918
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1919
redThumbDownIcon
10327
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1920
    ^ ToolbarIconLibrary redThumbDownIcon
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1921
1273d6c94564 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 10188
diff changeset
  1922
    "Modified: / 17-07-2011 / 10:04:37 / cg"
4165
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1923
!
5004f043a266 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1924
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1925
redThumbDownSmallIcon
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"
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1929
!
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  1930
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1931
removeBreakPointIcon2
15362
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1932
    UserPreferences current useColorsForColorBlindness ifTrue:[
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1933
        ^ ToolbarIconLibrary removeBreakPointBlueIcon2
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1934
    ].
1bb59c7b3817 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15334
diff changeset
  1935
    ^ ToolbarIconLibrary removeBreakPointIcon2
3813
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1936
!
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  1937
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1938
small_methodEmptyInheritedIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1939
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1940
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1941
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1942
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1943
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1944
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1945
     self small_methodEmptyInheritedIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1946
     ImageEditor openOnClass:self andSelector:#small_methodEmptyInheritedIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1947
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1948
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1949
        constantNamed:#'SystemBrowser class small_methodEmptyInheritedIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1950
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1951
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1952
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1953
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1954
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1955
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1956
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1957
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1958
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1959
                colorMapFromArray:#[ 0 0 0 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1960
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1961
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1962
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1963
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1964
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1965
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1966
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1967
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1968
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1969
small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1970
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1971
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1972
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1973
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1974
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1975
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1976
     self small_methodInheritedFromAboveAndRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1977
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveAndRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1978
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1979
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1980
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1981
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveAndRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1982
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1983
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1984
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1985
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1986
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1987
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1988
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1989
                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
  1990
                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
  1991
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1992
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1993
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1994
                            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
  1995
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1996
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  1997
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1998
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1999
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2000
small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2001
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2002
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2003
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2004
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2005
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2006
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2007
     self small_methodInheritedFromAboveIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2008
     ImageEditor openOnClass:self andSelector:#small_methodInheritedFromAboveIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2009
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2010
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2011
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2012
        constantNamed:#'SystemBrowser class small_methodInheritedFromAboveIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2013
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2014
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2015
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2016
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2017
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2018
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2019
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2020
                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
  2021
                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
  2022
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2023
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2024
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2025
                            bits:(ByteArray fromPackedString:'\GC8>O @@@@@@@@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2026
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2027
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2028
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2029
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2030
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2031
small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2032
    <resource: #image>
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2033
    "This resource specification was automatically generated
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2034
     by the ImageEditor of ST/X."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2035
    "Do not manually edit this!! If it is corrupted,
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2036
     the ImageEditor may not be able to read the specification."
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2037
    "
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2038
     self small_methodRedefinedBelowIcon inspect
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2039
     ImageEditor openOnClass:self andSelector:#small_methodRedefinedBelowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2040
     Icon flushCachedIcons"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2041
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2042
    ^ Icon 
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2043
        constantNamed:#'SystemBrowser class small_methodRedefinedBelowIcon'
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2044
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2045
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2046
                width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2047
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2048
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2049
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2050
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2051
                bits:(ByteArray fromPackedString:'@@D@@@@@@@@@@@@@@@4UBHR@A@@"@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2052
                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
  2053
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2054
                            width:5;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2055
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2056
                            bits:(ByteArray fromPackedString:'@@@@@@@@>O#8\G@b');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2057
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2058
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2059
        ]
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2060
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2061
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2062
startableClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2063
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2064
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2065
    ^ ToolbarIconLibrary startableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2066
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2067
    "Created: / 05-11-2001 / 09:50:16 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2068
    "Modified: / 20-07-2007 / 09:09:40 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2069
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2070
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2071
startableVisualAppIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2072
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2073
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2074
    ^ ToolbarIconLibrary visualStartableClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2075
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2076
    "Created: / 05-11-2001 / 09:49:00 / cg"
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2077
    "Modified: / 20-07-2007 / 09:08:34 / cg"
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2078
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2079
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2080
stopIcon
14106
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2081
    <resource: #obsolete>
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2082
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2083
    ^ self fullBreakPointedIcon
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2084
c042bb7e4cee Added icons fullBreakPointedIcon and lineBreakPointedIcon.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14103
diff changeset
  2085
    "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
  2086
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2087
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2088
tabListIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2089
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2090
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2091
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2092
    "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
  2093
     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
  2094
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2095
     self tabListIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2096
     ImageEditor openOnClass:self andSelector:#tabListIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2097
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2098
    ^ Icon constantNamed:#'SystemBrowser class tabListIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2099
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2100
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2101
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2102
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2103
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2104
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2105
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2106
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2107
                            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
  2108
                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
  2109
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2110
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2111
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2112
                            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
  2113
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2114
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2115
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2116
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2117
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2118
tableColumnsIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2119
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2120
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2121
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2122
    "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
  2123
     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
  2124
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2125
     self tableColumnsIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2126
     ImageEditor openOnClass:self andSelector:#tableColumnsIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2127
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2128
    ^ Icon constantNamed:#'SystemBrowser class tableColumnsIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2129
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2130
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2131
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2132
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2133
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2134
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2135
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2136
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2137
                            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
  2138
                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
  2139
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2140
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2141
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2142
                            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
  2143
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2144
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2145
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2146
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2147
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2148
testCaseClassIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2149
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2150
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2151
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2152
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2153
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2154
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2155
testCaseClassIconFor:cls
4167
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2156
    <resource: #programImage>
588e05d2124d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
  2157
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2158
    "/ decision moved to TestCase - see there.
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2159
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2160
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2161
    |lastResult|
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2162
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2163
    lastResult := cls lastTestRunResultOrNil.
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2164
    lastResult notNil ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2165
        lastResult == TestResult statePass ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2166
            ^ self testCasePassedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2167
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2168
        lastResult == TestResult stateFail ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2169
            ^ self testCaseFailedIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2170
        ].
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2171
        lastResult == TestResult stateError ifTrue:[
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2172
            ^ self testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2173
        ].
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2174
    ].
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2175
    ^ self testCaseUnknownResultIcon
6848
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2176
27b76bc54f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6776
diff changeset
  2177
    "Modified: / 06-08-2006 / 11:14:12 / cg"
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2178
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2179
12729
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2180
testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2181
    <resource: #programImage>
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2182
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2183
    "/ only left here for backward compatibility...
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2184
    ^ ToolbarIconLibrary testCaseErrorIcon
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2185
!
8185c4f20ed1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12713
diff changeset
  2186
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2187
testCaseFailedIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2188
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2189
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2190
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2191
    ^ ToolbarIconLibrary testCaseFailedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2192
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2193
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2194
testCasePassedIcon
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2195
    <resource: #programImage>
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2196
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2197
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2198
    ^ ToolbarIconLibrary testCasePassedIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2199
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2200
12631
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2201
testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2202
    <resource: #programImage>
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2203
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2204
    "/ only left here for backward compatibility...
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2205
    ^ ToolbarIconLibrary testCaseSkippedIcon
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2206
!
94d188b87901 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12621
diff changeset
  2207
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2208
testCaseUnknownResultIcon
4166
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2209
    <resource: #programImage>
e24130283125 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  2210
8862
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2211
    "/ only left here for backward compatibility...
dece7957557d comment/format in: #testCaseClassIconFor:
Claus Gittinger <cg@exept.de>
parents: 8853
diff changeset
  2212
    ^ ToolbarIconLibrary testCaseClassIcon
4150
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2213
!
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  2214
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2215
timeIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2216
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2217
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2218
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2219
    "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
  2220
     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
  2221
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2222
     self timeIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2223
     ImageEditor openOnClass:self andSelector:#timeIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2224
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2225
    ^ Icon constantNamed:#'SystemBrowser class timeIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2226
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2227
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2228
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2229
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2230
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2231
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2232
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2233
                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
  2234
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2235
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2236
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2237
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2238
                            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
  2239
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2240
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2241
        ]
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2242
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2243
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2244
traceIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2245
    <resource: #image>
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2246
    "This resource specification was automatically generated
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2247
     by the ImageEditor of ST/X."
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2248
    "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
  2249
     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
  2250
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  2251
     self traceIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2252
     ImageEditor openOnClass:self andSelector:#traceIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2253
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2254
    ^ Icon constantNamed:#'SystemBrowser class traceIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2255
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2256
            (Depth1Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2257
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2258
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2259
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2260
                bitsPerSample:(#( 1 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2261
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2262
                bits:(ByteArray fromPackedString:'@@@@@@>@C8@G@@\@@ @B@@@@@@@@@@@a');
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2263
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2264
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2265
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2266
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2267
                            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
  2268
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2269
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2270
        ]
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2271
!
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2272
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2273
visualStartableClassIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2274
    <resource: #image>
2830
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2275
    "This resource specification was automatically generated
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2276
     by the ImageEditor of ST/X."
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2277
    "Do not manually edit this!! If it is corrupted,
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2278
     the ImageEditor may not be able to read the specification."
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2279
    "
36dee112c780 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2280
     self visualStartableClassIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2281
     ImageEditor openOnClass:self andSelector:#visualStartableClassIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2282
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2283
    ^ Icon constantNamed:#'SystemBrowser class visualStartableClassIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2284
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2285
            (Depth2Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2286
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2287
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2288
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2289
                bitsPerSample:(#( 2 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2290
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2291
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2292
                            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
  2293
                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
  2294
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2295
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2296
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2297
                            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
  2298
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2299
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2300
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2301
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2302
    "Modified: / 5.11.2001 / 09:49:30 / cg"
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2303
!
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2304
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2305
warningClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2306
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2307
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2308
    ^ ToolbarIconLibrary warningClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2309
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2310
    "Modified: / 20-07-2007 / 09:04:39 / cg"
4275
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2311
!
aeaf7c245b7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
  2312
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2313
watchIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2314
    <resource: #image>
2892
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2315
    "This resource specification was automatically generated
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2316
     by the ImageEditor of ST/X."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2317
    "Do not manually edit this!! If it is corrupted,
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2318
     the ImageEditor may not be able to read the specification."
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2319
    "
1acef635a284 icons use less colors
Claus Gittinger <cg@exept.de>
parents: 2882
diff changeset
  2320
     self watchIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2321
     ImageEditor openOnClass:self andSelector:#watchIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2322
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2323
    ^ Icon constantNamed:#'SystemBrowser class watchIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2324
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2325
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2326
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2327
                height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2328
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2329
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2330
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2331
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2332
                            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
  2333
                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
  2334
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2335
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2336
                            height:12;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2337
                            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
  2338
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2339
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2340
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2341
!
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2342
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2343
windowClassIcon
7827
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2344
    <resource: #programImage>
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2345
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2346
    ^ ToolbarIconLibrary windowClassBrowserIcon
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2347
36dc2d8ec6b6 icons in ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 7711
diff changeset
  2348
    "Modified: / 20-07-2007 / 09:05:57 / cg"
4143
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2349
!
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2350
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2351
windowIcon
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2352
    <resource: #image>
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2353
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2354
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2355
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2356
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2357
    "
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2358
     self windowIcon inspect
14413
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2359
     ImageEditor openOnClass:self andSelector:#windowIcon"
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2360
    
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2361
    ^ Icon constantNamed:#'SystemBrowser class windowIcon'
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2362
        ifAbsentPut:[
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2363
            (Depth4Image new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2364
                width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2365
                height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2366
                photometric:(#palette);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2367
                bitsPerSample:(#( 4 ));
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2368
                samplesPerPixel:(1);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2369
                bits:(ByteArray 
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2370
                            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
  2371
                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
  2372
                mask:((ImageMask new)
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2373
                            width:13;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2374
                            height:11;
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2375
                            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
  2376
                            yourself);
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2377
                yourself
cdd8eaf8a5e3 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 14390
diff changeset
  2378
        ]
3354
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2379
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
  2380
    "Created: / 5.11.2001 / 09:39:03 / cg"
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2381
! !
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  2382
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2383
!SystemBrowser class methodsFor:'interface specs'!
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2384
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2385
metaSpec
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2386
        "UIPainter new openOnClass: self andSelector: #metaSpec"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2387
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2388
        <resource: #canvas>
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2389
        ^#(#FullSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2390
                #window: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2391
                #(#WindowSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2392
                        #label: 'Unlabeled Canvas' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2393
                        #bounds: #(#Rectangle 27 249 325 334 ) ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2394
                #component: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2395
                #(#SpecCollection 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2396
                        #collection: #(
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2397
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2398
                                        #layout: #(#LayoutFrame 0 0 4 0 -1 0.575 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2399
                                        #name: #instanceSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2400
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2401
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2402
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2403
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2404
                                        #label: 'instance' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2405
                                        #select: false ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2406
                                #(#RadioButtonSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2407
                                        #layout: #(#LayoutFrame 1 0.575 4 0 -1 1 20 0 ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2408
                                        #name: #classSwitch 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2409
                                        #model: #metaHolder 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2410
                                        #callbacksSpec: 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2411
                                        #(#UIEventCallbackSubSpec 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2412
                                                #requestValueChangeSelector: #changeRequest ) 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2413
                                        #label: 'class' 
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2414
                                        #select: true ) ) ) )
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2415
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2416
    "Created: / 30.10.1997 / 19:07:29 / cg"
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2417
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  2418
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2419
methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2420
    "This resource specification was automatically generated
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2421
     by the UIPainter of ST/X."
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2422
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2423
    "Do not manually edit this!! If it is corrupted,
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2424
     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
  2425
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2426
    "
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2427
     UIPainter new openOnClass:SystemBrowser andSelector:#methodMoveDialogSpec
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2428
     SystemBrowser new openInterface:#methodMoveDialogSpec
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2429
    "
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
    <resource: #canvas>
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2432
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2433
    ^ 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2434
    #(FullSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2435
       name: methodMoveDialogSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2436
       window: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2437
      (WindowSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2438
         label: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2439
         name: 'move method'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2440
         bounds: (Rectangle 0 0 387 118)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2441
       )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2442
       component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2443
      (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2444
         collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2445
          (HorizontalPanelViewSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2446
             name: 'horizontalPanelView'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2447
             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
  2448
             level: 0
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2449
             horizontalLayout: fitSpace
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2450
             verticalLayout: center
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2451
             horizontalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2452
             verticalSpace: 4
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2453
             component: 
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2454
            (SpecCollection
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2455
               collection: (
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2456
                (ActionButtonSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2457
                   label: 'cancel'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2458
                   name: 'actionButton2'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2459
                   translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2460
                   tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2461
                   model: cancel
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2462
                   extent: (Point 187 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2463
                 )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2464
                (ActionButtonSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2465
                   label: 'move'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2466
                   name: 'actionButton1'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2467
                   translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2468
                   tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2469
                   model: accept
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2470
                   isDefault: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2471
                   extent: (Point 188 27)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2472
                 )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2473
                )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2474
              
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2475
             )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2476
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2477
          (LabelSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2478
             label: 'move current method to which class:'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2479
             name: 'label'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2480
             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
  2481
             style: largeLabelFont
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2482
             foregroundColor: (Color 0.0 0.0 0.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2483
             backgroundColor: (Color 67.0 67.0 67.0)
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2484
             translateLabel: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2485
             adjust: left
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2486
           )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2487
          (ComboBoxSpec
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2488
             name: 'comboBox1'
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2489
             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
  2490
             tabable: true
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2491
             model: className
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2492
             comboList: classList
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2493
           )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2494
          )
16847
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2495
        
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2496
       )
b4eddbe34078 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 16691
diff changeset
  2497
     )
1203
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2498
! !
ade0bcc06188 preps to use UISpecs
Claus Gittinger <cg@exept.de>
parents: 1190
diff changeset
  2499
17734
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2500
!SystemBrowser class methodsFor:'private-code update'!
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2501
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2502
sourceOfMethod:mthd
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2503
    |code|
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2504
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2505
    code := mthd source.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2506
    code notNil ifTrue:[ ^ code].
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2507
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2508
    "/ wrong: even if there is no source, we
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2509
    "/ should be able to type in something and accept
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2510
    "/ self setNoAcceptAction.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2511
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2512
    (mthd sourcePosition isNil
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2513
    or:[mthd getSource isNil]) ifTrue:[
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2514
        ^ '"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2515
Sorry, but the method''s sourceCode is not available.
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
Probably, the method''s sourceCode-info was stripped from the system.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2518
"'.
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
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
Sorry, but the method''s sourceCode is not available or corrupted.
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
',(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
  2525
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
  2526
'] ifFalse:['']),'
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2527
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
  2528
The system searches those directories for a package-subdirectories,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2529
which should either contain the classes source file.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2530
Also, check if that directory and/or sourceFile grants read access.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2531
The packagePath can be accessed via
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2532
    Smalltalk packagePath
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2533
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2534
To fix this (in the running system), evaluate:
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2535
    Smalltalk packagePath addFirst:''<<pathOfDirContainingPackageDir>>''.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2536
    Smalltalk flushPathCaches.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2537
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2538
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
  2539
file - so you will not get this error again and again.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2540
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2541
Also, check if you have the sourceCodeManagement (CVS) enabled,
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2542
and (if so) configured correctly.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2543
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2544
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
  2545
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
  2546
in the ''source'' directory.
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2547
"'.
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
    "Modified: / 09-11-2017 / 08:16:28 / cg"
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2550
! !
e01603154e47 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17624
diff changeset
  2551
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2552
!SystemBrowser class methodsFor:'private-helpers'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2553
2880
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2554
askForPackageChangeFrom:oldPkg to:newPkg
3626
abf84bdbfdb2 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 3621
diff changeset
  2555
    |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
  2556
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2557
    box := OptionBox 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2558
                title:
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2559
('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
  2560
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
  2561
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
  2562
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
  2563
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
  2564
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
  2565
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
  2566
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2567
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
  2568
                        bindWith:(oldPkg allBold)
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2569
                            with:(newPkg allBold))
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2570
                numberOfOptions:3.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2571
3476
685f67f7e818 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
  2572
    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
  2573
    box defaultButtonIndex:3. 
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2574
    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
  2575
    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
  2576
    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
  2577
    box addVerticalSpace:10.
17043
6185cc2147c2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16893
diff changeset
  2578
    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
  2579
    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
  2580
    box resize.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2581
    box showAtPointer.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2582
    box destroy.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2583
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2584
    (answer ~~ #cancel) ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2585
        notAgain value ifTrue:[
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2586
            Class catchMethodRedefinitions:false.
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2587
        ].
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.
11291
d4d27edd6ab4 changed: #askForPackageChangeFrom:to:
Claus Gittinger <cg@exept.de>
parents: 11271
diff changeset
  2590
17775
0bd37dc16a54 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17734
diff changeset
  2591
    "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
  2592
!
ef6fcc02a924 give user a chance to suppress the annoying package-change-keep
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  2593
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2594
showNoneFound
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2595
    self warn:(self classResources string:'None found.').
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2596
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2597
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2598
showNoneFound:what
1620
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2599
    |rs|
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2600
51341ec8360b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2601
    rs := self classResources.
3244
1e41eccb08b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  2602
    self information:((rs string:what) , (rs string:'...\\... none found.')) withCRs.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2603
! !
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2604
4860
8e1a4b990512 method category rename
Claus Gittinger <cg@exept.de>
parents: 4852
diff changeset
  2605
!SystemBrowser class methodsFor:'private-instance creation'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2606
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2607
newWithLabel:aString setupBlock:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2608
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2609
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2610
    ^ self newWithLabel:aString setupBlock:aBlock onDevice:Screen current
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2611
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2612
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2613
newWithLabel:aString setupBlock:aBlock onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2614
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2615
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2616
    |newBrowser|
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2617
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2618
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2619
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2620
    aBlock value:newBrowser.
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2621
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2622
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2623
    ^ newBrowser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2624
!
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  2625
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2626
newWithLabel:aString setupSelector:aSymbol arg:arg
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2627
    "common helper method for all creation methods"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2628
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2629
    ^ self newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:Screen current 
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2630
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  2631
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2632
newWithLabel:aString setupSelector:aSymbol arg:arg onDevice:aWorkstation
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2633
    "common helper method for all creation methods"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2634
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2635
    |newBrowser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2636
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2637
    newBrowser := BrowserView onDevice:aWorkstation.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2638
    newBrowser title:aString.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2639
    newBrowser perform:aSymbol with:arg.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2640
    newBrowser open.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2641
    ^ newBrowser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2642
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2643
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  2644
!SystemBrowser class methodsFor:'special search startup'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2645
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2646
allCallsOn:aSelectorString
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2647
    "return a collection of methods which send aSelector.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2648
     This takes some time, because source code is parsed to see
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2649
     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
  2650
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2651
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2652
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2653
        in:(Smalltalk allClasses) 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2654
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2655
        match:false
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2656
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2657
    "
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2658
     Time millisecondsToRun:[
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2659
         SystemBrowser allCallsOn:#at:put:
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  2660
     ].            
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
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2663
    "Created: 24.1.1997 / 19:42:57 / cg"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2664
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2665
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2666
allCallsOn:aSelectorString in:aCollectionOfClasses
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2667
    "return a collection of methods which send aSelector.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2668
     Methods from classes in aCollectionOfClasses are searched only."
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2669
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2670
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2671
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2672
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2673
        ignoreCase:false 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2674
        match:false
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2675
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2676
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2677
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
  2678
    "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
  2679
     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
  2680
9007
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2681
    ^ self 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2682
        allCallsOn:aSelectorString 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2683
        in:aCollectionOfClasses 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2684
        ignoreCase:ignoreCase 
7e05080796d6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
  2685
        match:true
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2686
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2687
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2688
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2689
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2690
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2691
    "Modified: 18.4.1997 / 10:32:50 / cg"
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
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2694
allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatchArg
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2695
    "return a collection of methods which send aSelector.
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2696
     Methods from classes in aCollectionOfClasses are searched only."
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2697
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2698
    |doMatch sel searchBlock classesSearched|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2699
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2700
    doMatch := doMatchArg.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2701
    (doMatch and:[aSelectorString includesMatchCharacters not]) ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2702
        doMatch := false.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2703
    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2704
        
3471
4c4b41516d96 care for empty selector in allCallsOn.
Claus Gittinger <cg@exept.de>
parents: 3470
diff changeset
  2705
    aSelectorString size == 0 ifTrue:[ ^ #() ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2706
    (doMatch or:[ignoreCase]) ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2707
        "/ 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
  2708
        sel := aSelectorString asSymbolIfInterned.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2709
        sel isNil ifTrue:[ ^ #() ].   "/ none (no such selector)
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2710
    ]. 
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2711
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2712
    classesSearched := aCollectionOfClasses.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2713
    doMatch ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  2714
        "/ 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
  2715
        (aSelectorString includes:$() ifFalse:[
12831
f7fe86345bc4 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12822
diff changeset
  2716
            classesSearched := classesSearched reject:[:eachClass | eachClass theNonMetaclass isJavaClass ].
2846
b332c41c3daa allCallsOn fix
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  2717
        ].
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2718
    ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  2719
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2720
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
4332
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2721
    searchBlock isNil ifTrue:[
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2722
        ^ #()    "/ none (no such selector)
c8efd47b1a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  2723
    ].
2901
8d162dedd271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2724
    ^ self allMethodsIn:classesSearched where:searchBlock
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2725
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2726
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2727
     SystemBrowser allCallsOn:#at:put: in:(Smalltalk allClasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2728
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2729
1143
0707461e582a avoid compilation of lazy methods when searching for senders
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2730
    "Modified: 18.4.1997 / 10:32:50 / cg"
996
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
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2733
allMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2734
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2735
     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
  2736
     considered.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2737
     Only classes in aCollectionOfClasses are inspected in the search"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2738
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2739
    |list activePriority|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2740
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2741
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2742
     since this may take a long time, lower my priority ...
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
    activePriority := Processor activePriority.
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  2745
    Processor activeProcess 
2769
768b6aa2fb5f eliminated a message
Claus Gittinger <cg@exept.de>
parents: 2748
diff changeset
  2746
        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
  2747
    do:[
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2748
        |checkedClasses checkBlock detectedMethods|
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2749
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2750
        checkedClasses := IdentitySet new.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2751
        list := OrderedCollection new.
2484
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2752
        detectedMethods := IdentitySet new.
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2753
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2754
        checkBlock := [:cls |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2755
            (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
  2756
                (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2757
                    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
  2758
                ] ifFalse:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2759
                    cls methodDictionary keysAndValuesDo:[:sel :method |
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2760
                        (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
  2761
                            "/ 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
  2762
                            (detectedMethods includes:method) ifFalse:[
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2763
                                list add:method.
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2764
                                detectedMethods add:method
afd8d8dbd9e2 care vor methods being found in multiple classes
Claus Gittinger <cg@exept.de>
parents: 2439
diff changeset
  2765
                            ]
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2766
                        ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2767
                    ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2768
                    checkedClasses add:cls.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2769
                ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2770
            ]
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
        aCollectionOfClasses do:[:aClass |
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
             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
  2776
             implementors or senders)
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
            wantInst ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2779
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2780
                checkBlock value:aClass
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2781
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2782
            wantClass ifTrue:[
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2783
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2784
                checkBlock value:(aClass class)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2785
            ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2786
            Processor yield
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2787
        ]
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2788
    ].
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2789
    ^ list
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2790
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2791
    "Created: / 24-01-1997 / 19:41:12 / cg"
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  2792
    "Modified: / 14-03-2017 / 12:05:41 / cg"
996
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
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2795
allMethodsIn:aCollectionOfClasses where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2796
    "return a collection of methods which pass the given test.
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2797
     Only classes in aCollectionOfClasses are inspected in the search"
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
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2800
        allMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2801
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2802
        class:true
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2803
        where:aBlock
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2804
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2805
    "Created: 24.1.1997 / 19:41:49 / cg"
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2806
!
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2807
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2808
aproposSearch:aString
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2809
    "browse all methods, which have aString in their selector."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2810
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2811
    ^ self aproposSearch:aString in:(Smalltalk allClasses)
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  2812
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2813
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2814
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2815
aproposSearch:aString in:aCollectionOfClasses
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2816
    "browse all methods, which have aString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2817
     This is relatively slow, since all source must be processed."
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2818
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2819
    |matchString list s searchBlock browser|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2820
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2821
    matchString := '*' , aString , '*'.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2822
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2823
    list := OrderedCollection new.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2824
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2825
    (aString includesMatchCharacters) ifTrue:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2826
        s := '*' , aString asLowercase , '*'.
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2827
        "a matchString"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2828
        searchBlock := [:text | (text asCollectionOfLinesfindFirst:[:line | s match:line]) ~~ 0].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2829
    ] ifFalse:[
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2830
        searchBlock := [:source | (source findString:aString asLowercase) ~~ 0]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2831
    ].
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2832
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2833
    browser := self browseMethodsIn:aCollectionOfClasses 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2834
                     where:[:class :method :sel |
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2835
                                |comment|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2836
2655
9e90bbd1eb18 apropos search is now: selectors containing
Claus Gittinger <cg@exept.de>
parents: 2642
diff changeset
  2837
                                (searchBlock value:sel asLowercase)
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2838
                           ]
2729
9af04074a4bb no direct access to super-class-instvars
Claus Gittinger <cg@exept.de>
parents: 2728
diff changeset
  2839
                     title:(self classResources string:'selectors containing: %1' with:aString).
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2840
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2841
    browser notNil ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2842
        browser autoSearch:aString 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2843
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2844
    ^ browser
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2845
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2846
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2847
     SystemBrowser aproposSearch:'append' in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2848
     SystemBrowser aproposSearch:'add'    in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2849
     SystemBrowser aproposSearch:'sort'   in:(Collection withAllSubclasses)
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2850
     SystemBrowser aproposSearch:'[Aa]bsent' in:(Collection withAllSubclasses)
52
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
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2853
    "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
  2854
!
6f4460d5a09d added supersend searches; offer comparing the current version with the
Claus Gittinger <cg@exept.de>
parents: 203
diff changeset
  2855
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2856
browseAllCallsOn:aSelectorString
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2857
    "launch a browser for all senders of aSelector.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2858
     Notice: better go via Smalltalk browseAllCallsOn:, which honors the tool-preferences"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2859
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2860
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2861
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2862
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2863
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2864
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  2865
     SystemBrowser browseAllCallsOn:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2866
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2867
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  2868
    "Created: 9.12.1995 / 18:00:41 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2869
    "Modified: 10.7.1996 / 10:26:15 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2870
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2871
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2872
browseAllCallsOn:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2873
    "launch a browser for all senders of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2874
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2875
    ^ self
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2876
        browseAllCallsOn:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2877
        in:aSetOfClasses
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2878
        title:(self classResources string:'Senders of: %1' with:aSelectorString)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2879
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2880
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2881
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2882
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2883
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2884
    "Created: 10.7.1996 / 10:25:49 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2885
    "Modified: 24.1.1997 / 19:49:34 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2886
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2887
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2888
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
  2889
    "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
  2890
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2891
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2892
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2893
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2894
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  2895
        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
  2896
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2897
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2898
     SystemBrowser browseAllCallsOn:#+ in:(Number withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2899
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2900
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2901
    "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
  2902
    "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
  2903
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2904
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2905
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:match title:titleArg
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2906
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2907
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2908
    |list list2 browser selWithColon title rs|
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2909
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2910
    title := titleArg.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2911
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  2912
    list := self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2913
    list isEmpty ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2914
        aSelectorString numArgs == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2915
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2916
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2917
                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
  2918
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2919
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2920
        list2 size == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2921
            self showNoneFound:title.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2922
            ^ nil
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
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2925
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2926
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2927
                         (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
  2928
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2929
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2930
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2931
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2932
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  2933
        title := title , ':'.
4200
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2934
    ].
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2935
3859a6fee797 show none found
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
  2936
    browser := self browseMethods:list title:title.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2937
    browser notNil ifTrue:[
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  2938
        |s|
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2939
8139
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2940
"/        "
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  2941
"/         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
  2942
"/         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
  2943
"/        "
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2944
"/        s := aSelectorString.
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2945
"/        (s includes:$:) ifTrue:[
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2946
"/            s := s copyTo:(s indexOf:$:)
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2947
"/        ].
acdaec7c63a0 auto-search for selector (not string) when searching senders.
Claus Gittinger <cg@exept.de>
parents: 8129
diff changeset
  2948
"/        browser autoSearch:s 
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  2949
        browser setSearchSelector:aSelectorString ignoreCase:ignoreCase doMatch:true.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2950
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2951
    ^ browser
648
6ec086b7972c Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 634
diff changeset
  2952
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2953
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2954
     SystemBrowser
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2955
        browseAllCallsOn:#+ 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2956
        in:(Number withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  2957
        title:'just a test'
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
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2960
    "Modified: / 24-01-1997 / 19:48:54 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2961
    "Created: / 14-02-2012 / 14:19:51 / cg"
17404
8786f9f4241b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17328
diff changeset
  2962
    "Modified (format): / 13-02-2017 / 20:31:46 / cg"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2963
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2964
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2965
browseAllCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2966
    "launch a browser for all senders of aSelector in aCollectionOfClasses"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2967
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2968
    ^ self 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2969
        browseAllCallsOn:aSelectorString 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2970
        in:aCollectionOfClasses 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2971
        ignoreCase:ignoreCase 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2972
        match:true 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2973
        title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2974
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2975
    "
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2976
     SystemBrowser
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2977
        browseAllCallsOn:#+ 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2978
        in:(Number withAllSubclasses) 
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2979
        title:'just a test'
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
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  2982
    "Modified: / 14-02-2012 / 14:20:17 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2983
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  2984
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2985
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
  2986
    "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
  2987
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2988
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2989
        browseAllCallsOn:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2990
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2991
        ignoreCase:false 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2992
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2993
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2994
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2995
     SystemBrowser
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2996
        browseAllCallsOn:#+ 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2997
        in:(Number withAllSubclasses) 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  2998
        title:'just a test'
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
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3001
    "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
  3002
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3003
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3004
browseCallsOn:aSelectorString under:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3005
    "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
  3006
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3007
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3008
        browseAllCallsOn:aSelectorString
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3009
                      in:(aClass withAllSubclasses)
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3010
                   title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3011
                                string:'Senders of: %1 (in and below %2)'
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3012
                                with:aSelectorString 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3013
                                with:aClass name)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3014
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3015
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3016
     SystemBrowser browseCallsOn:#+ under:Number
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3017
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3018
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3019
    "Created: 9.12.1995 / 17:59:57 / cg"
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  3020
    "Modified: 24.1.1997 / 19:50:33 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3021
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3022
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3023
browseClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3024
    "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
  3025
     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
  3026
     classvar is modified"
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
    ^ self browseRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3029
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3030
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3031
browseClassRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3032
    "launch a browser for all methods in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3033
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3034
     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
  3035
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3036
    ^ self browseRefsTo:varName classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3037
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3038
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3039
browseClassRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3040
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3041
     where the classVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3042
     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
  3043
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3044
    ^ self browseClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3045
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3046
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3047
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3048
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
  3049
    "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
  3050
     resource in aCollectionOfClasses.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3051
     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
  3052
     are parsed.
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3053
     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
  3054
        browseForResource:#style containing:nil in:... title:...
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3055
     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
  3056
        browseForResource:#style containing:'arrowButtonDownForm' in:... title:..."
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3057
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  3058
    |browser searchBlock|
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3059
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3060
    "/ search for any resource can be done without looking
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3061
    "/ at the source ...
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3062
    (aResourceSymbol isNil and:[item isNil]) ifTrue:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3063
        searchBlock := [:class :method :s | method hasResource]
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3064
    ] ifFalse:[
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3065
        searchBlock := [:class :method :s |
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3066
                            |rsrc val found|
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3067
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3068
                            found := false.
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3069
                            method hasResource ifTrue:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3070
                                rsrc := method resources.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3071
                                rsrc notNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3072
                                    aResourceSymbol isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3073
                                        item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3074
                                            found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3075
                                        ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3076
                                            rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3077
                                                rsrc keysAndValuesDo:[:rsrc :val |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3078
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3079
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3080
                                                            found := item match:v printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3081
                                                        ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3082
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3083
                                                        found := item match:val printString 
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3084
                                                    ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3085
                                                ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3086
                                            ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3087
                                                found := item match:rsrc printString
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3088
                                            ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3089
                                        ]
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3090
                                    ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3091
                                        (rsrc includesKey:aResourceSymbol) ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3092
                                            item isNil ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3093
                                                found := true
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3094
                                            ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3095
                                                rsrc isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3096
                                                    val := rsrc at:aResourceSymbol.
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3097
                                                    val isCollection ifTrue:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3098
                                                        val do:[:v |
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3099
                                                            found := item match:v printString 
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3100
                                                        ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3101
                                                    ] ifFalse:[
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3102
                                                        found := item match:val printString 
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3103
                                                    ]
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3104
                                                ] ifFalse:[
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3105
                                                    found := item match:rsrc printString
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3106
                                                ]
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3107
                                            ]
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3108
                                        ]
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3109
                                    ]
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3110
                                ].
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3111
                            ].
1356
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3112
                            found
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3113
                       ].
0080df099c35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1203
diff changeset
  3114
    ].
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3115
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3116
    browser := self browseMethodsIn:aCollectionOfClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3117
                              where:searchBlock
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3118
                              title:title.
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3119
    browser notNil ifTrue:[
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3120
        browser autoSearch:'resource:' 
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3121
    ].
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3122
    ^ browser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3123
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3124
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3125
     SystemBrowser
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3126
        browseForResource:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3127
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3128
        title:'methods with a resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3129
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3130
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3131
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3132
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3133
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3134
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3135
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3136
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3137
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3138
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3139
        browseForResource:#style
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3140
        containing:'arrowButton*'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3141
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3142
        title:'methods with a #style resource'
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3143
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3144
1573
4b6ce12dff2b dont duplicate the code in method>>resources
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3145
    "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
  3146
!
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3147
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3148
browseForResource:aResourceSymbol in:aCollectionOfClasses title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3149
    "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
  3150
     resource in aCollectionOfClasses"
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
    ^ self
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3153
        browseForResource:aResourceSymbol
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3154
        containing:nil
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3155
        in:aCollectionOfClasses 
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3156
        title:title
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3157
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3158
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3159
     SystemBrowser
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3160
        browseForResource:#style
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3161
        in:Smalltalk allClasses
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3162
        title:'methods accessing styleSheet values'
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
    "
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3165
     SystemBrowser
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3166
        browseForResource:#keyboard
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3167
        in:Smalltalk allClasses
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3168
        title:'methods handling keyboard events'
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3169
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3170
    "
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3171
     SystemBrowser
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3172
        browseForResource:nil
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3173
        in:Smalltalk allClasses
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3174
        title:'methods with a resource'
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
929
a2275f1b4c94 enhanced resource search, to search for a particular
Claus Gittinger <cg@exept.de>
parents: 825
diff changeset
  3177
    "Modified: 9.1.1997 / 12:44:38 / cg"
573
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3178
!
e32bd3e46a72 added startup for searching resourceSpecs
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
  3179
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3180
browseForString:aString
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3181
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3182
    "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
  3183
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3184
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3185
    ^ self browseForString:aString in:(Smalltalk allClasses) ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3186
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3187
    "Modified: / 18.6.1998 / 16:42:39 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3188
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3189
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3190
browseForString:aString in:aCollectionOfClasses
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3191
    <resource: #obsolete>
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3192
    "launch a browser for all methods in aCollectionOfClasses  
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3193
     containing a string in their source.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3194
     This may be slow, since source-code has to be scanned."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3195
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3196
    ^ self
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3197
        browseForString:aString 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3198
        in:aCollectionOfClasses 
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3199
        ignoreCase:false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3200
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3201
    "
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3202
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3203
     SystemBrowser browseForString:'should'   in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3204
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
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
    "Created: / 9.12.1995 / 18:03:12 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3208
    "Modified: / 18.6.1998 / 16:43:27 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3209
!
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
browseForString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
16471
ad521c8abbbb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16468
diff changeset
  3212
    <resource: #obsolete>
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3213
    "launch a browser for all methods in aCollectionOfClasses  
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3214
     containing a string in their source.
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3215
     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
  3216
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3217
    |browser searchBlock title s|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3218
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3219
    title := self classResources string:'Methods containing: %1' with:aString displayString.
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3220
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3221
    (aString includesMatchCharacters
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3222
    or:[ignoreCase]) ifTrue:[
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3223
        s := '*' , aString , '*'.
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3224
        "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
  3225
        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
  3226
                            |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
  3227
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3228
                            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
  3229
                                ('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
  3230
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3231
                            ] ifFalse:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  3232
                                s match:src caseSensitive:ignoreCase not
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3233
                            ]
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
  3234
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3235
    ] 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
  3236
        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
  3237
                            |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
  3238
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
                            src := m source.
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3240
                            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
  3241
                                ('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
  3242
                                false
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3243
                            ] ifFalse:[
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3244
                                (src findString:aString) ~~ 0
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3245
                            ]
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
  3246
                       ]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3247
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3248
    browser := self browseMethodsIn:aCollectionOfClasses where:searchBlock title:title.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3249
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3250
    browser notNil ifTrue:[
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3251
        browser autoSearch:aString ignoreCase:ignoreCase
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
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
    "
1703
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3256
     SystemBrowser browseForString:'all'      in:(Array with:Object)
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3257
     SystemBrowser browseForString:'should'   in:(Array with:Object)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3258
     SystemBrowser browseForString:'[eE]rror' in:(Array with:Object)
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
    "Created: / 18.6.1998 / 16:42:50 / cg"
ea66390f879b added ignoreCase option to string-search.
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3262
    "Modified: / 18.6.1998 / 16:51:25 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3263
!
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
browseForSymbol:aSymbol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3266
    "launch a browser for all methods referencing aSymbol"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3267
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3268
    ^ self 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3269
        browseForSymbol:aSymbol 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3270
        title:(self classResources string:'Users of: %1' with:aSymbol) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3271
        warnIfNone:true
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3272
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3273
    "Created: 9.12.1995 / 18:04:34 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3274
    "Modified: 10.7.1996 / 10:35:34 / cg"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3275
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3276
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3277
browseForSymbol:aSymbol in:aSetOfClasses title:title warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3278
    "launch a browser for all methods referencing aSymbol"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3279
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3280
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3281
        browseForSymbol:aSymbol 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3282
        in:aSetOfClasses 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3283
        title:title 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3284
        warnIfNone:doWarn
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  3285
        searchFor:aSymbol
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3286
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3287
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3288
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
  3289
    "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
  3290
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3291
    |browser searchBlock sym|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3292
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3293
    (aSymbol includesMatchCharacters) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3294
        "a matchString"
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3295
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3296
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3297
                                (aLiteral isMemberOf:Symbol) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3298
                                  and:[aSymbol match:aLiteral]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3299
                            ] ifNone:nil) notNil
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3300
                       ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3301
    ] ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3302
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3303
         can do a faster search
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3304
        "
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3305
        sym := aSymbol asSymbolIfInterned.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3306
        sym isNil ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3307
            self showNoneFound:title.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3308
            ^ nil
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
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3311
        searchBlock := [:c :m :s |
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3312
                            (m literalsDetect:[:aLiteral|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3313
                                (sym == aLiteral) 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3314
                            ] ifNone:nil) notNil
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
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3317
    doWarn ifFalse:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3318
        WarningSignal ignoreIn:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3319
            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
  3320
        ]
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3321
    ] ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3322
        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
  3323
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3324
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3325
    (browser notNil 
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3326
    and:[searchString notNil]) ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3327
        browser autoSearch:searchString
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
    ^ browser
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3330
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3331
    "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
  3332
    "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
  3333
    "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
  3334
!
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3335
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3336
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
  3337
    "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
  3338
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3339
    |browser searchBlock|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3340
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3341
    searchBlock := self searchBlockForSymbol:aSymbol.
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3342
    searchBlock == false ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3343
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3344
        ^ nil
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3345
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3346
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3347
    WarningSignal ignoreIn:[
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3348
        InformationSignal ignoreIn:[
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3349
            browser := self browseMethodsWhere:searchBlock title:title.
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
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
    browser isNil ifTrue:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3353
        actionIfNoneFound value.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  3354
        ^ 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
  3355
    ].
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3356
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3357
    (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
  3358
        browser autoSearch:searchString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3359
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3360
    ^ browser
375
a82f2fe29802 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 279
diff changeset
  3361
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3362
    "Modified: / 24-06-1996 / 14:39:07 / stefan"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3363
    "Created: / 31-10-1996 / 14:45:08 / cg"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  3364
    "Modified: / 22-03-2012 / 06:58:07 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3365
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3366
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3367
browseForSymbol:aSymbol title:title warnIfNone:doWarn
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3368
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3369
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3370
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3371
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3372
        title:title 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3373
        warnIfNone:doWarn 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3374
        searchFor:aSymbol
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3375
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3376
    "Modified: 31.10.1996 / 14:45:38 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3377
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3378
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3379
browseForSymbol:aSymbol title:title warnIfNone:doWarn searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3380
    "launch a browser for all methods referencing aSymbol"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3381
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3382
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3383
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3384
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3385
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3386
    ].
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3387
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3388
        browseForSymbol:aSymbol 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3389
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3390
        ifNone:b
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3391
        searchFor:searchString
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3392
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3393
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3394
browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3395
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3396
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3397
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3398
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3399
        in:(Smalltalk allClasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3400
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
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3403
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3404
    "
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
    "Created: / 9.12.1995 / 18:01:18 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3407
    "Modified: / 5.11.2001 / 17:31:11 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3408
!
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
browseImplementorsMatching:aSelectorString in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3411
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3412
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3413
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3414
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3415
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3416
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
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
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3419
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3420
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3421
    "
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
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3424
    "Modified: / 5.11.2001 / 17:30:57 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3425
!
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
browseImplementorsMatching:aSelectorString in:aSetOfClasses ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3428
    "launch a browser for all implementors of aSelector"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3429
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3430
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3431
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3432
        in:aSetOfClasses
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3433
        ignoreCase:ignoreCase
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3434
        title:(self classResources string:'implementors of: %1' with:aSelectorString)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3435
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3436
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3437
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3438
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3439
    "
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
    "Created: / 10.7.1996 / 10:20:59 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3442
    "Modified: / 5.11.2001 / 17:30:43 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3443
!
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
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3446
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3447
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
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
    |list|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3450
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3451
    list := self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3452
                findImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3453
                in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3454
                ignoreCase:ignoreCase.
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 size == 0 ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3457
        self showNoneFound:title.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3458
        ^ nil
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3459
    ].
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
    ^ self browseMethods:list asOrderedCollection title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3462
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3463
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3464
     SystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3465
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3466
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3467
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3468
                                  title:'some implementors of +'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3469
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3470
     NewSystemBrowser browseImplementorsOf:#+
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3471
                                     in:(Array with:Number
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3472
                                               with:Float
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3473
                                               with:SmallInteger)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3474
                                  title:'some implementors of +'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3475
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3476
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3477
    "Modified: / 4.9.1995 / 17:33:39 / claus"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3478
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3479
    "Modified: / 5.11.2001 / 17:30:38 / cg"
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
browseImplementorsMatching:aSelectorString in:aCollectionOfClasses title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3483
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3484
     the classes contained in aCollectionOfClasses and their metaclasses"
4158
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
    ^ self
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3487
        browseImplementorsMatching:aSelectorString 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3488
        in:aCollectionOfClasses 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3489
        ignoreCase:false
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3490
        title:title
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3491
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3492
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3493
browseImplementorsMatching:aSelectorString under:aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3494
    "launch a browser for all implementors of aSelector in aClass
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3495
     and its subclasses"
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
    ^ self 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3498
        browseImplementorsMatching:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3499
        in:(aClass withAllSubclasses)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3500
        title:(self classResources 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3501
                string:'implementors of: %1 (in and below %2)' 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3502
                with:aSelectorString
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3503
                with:aClass name)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3504
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3505
    "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3506
     SystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3507
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3508
    "
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
    "Created: / 9.12.1995 / 18:06:09 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3511
    "Modified: / 5.11.2001 / 17:30:15 / cg"
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3512
!
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3513
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3514
browseImplementorsOf:aSelectorString
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3515
    "launch a browser for all implementors of aSelector"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3516
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3517
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3518
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3519
        in:(Smalltalk allClasses)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3520
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3521
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3522
     SystemBrowser browseImplementorsOf:#+
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3523
     NewSystemBrowser browseImplementorsOf:#+
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3524
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3525
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3526
    "Created: / 9.12.1995 / 18:01:18 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3527
    "Modified: / 5.11.2001 / 17:31:11 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3528
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3529
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3530
browseImplementorsOf:aSelectorString in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3531
    "launch a browser for all implementors of aSelector"
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3532
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3533
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3534
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3535
        in:aSetOfClasses
8704
f5b8ba75a158 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 8702
diff changeset
  3536
        title:(self classResources string:'Implementors of: %1' with:aSelectorString allBold)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3537
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3538
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3539
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3540
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3541
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3542
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3543
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3544
    "Modified: / 5.11.2001 / 17:30:57 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3545
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3546
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3547
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
  3548
    "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
  3549
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3550
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3551
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3552
        in:aSetOfClasses
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3553
        ignoreCase:ignoreCase
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3554
        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
  3555
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3556
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3557
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3558
     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
  3559
    "
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3560
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3561
    "Created: / 10.7.1996 / 10:20:59 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3562
    "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
  3563
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3564
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3565
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3566
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3567
     the classes contained in aCollectionOfClasses and their metaclasses"
11271
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3568
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3569
    doMatch ifTrue:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3570
        self browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3571
    ] ifFalse:[
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3572
        self browseImplementorsMatching:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
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
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3575
    "Created: / 14-02-2012 / 13:55:23 / cg"
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3576
!
efce0b7d3072 class definition
Claus Gittinger <cg@exept.de>
parents: 10897
diff changeset
  3577
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3578
browseImplementorsOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase title:titleArg
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3579
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3580
     the classes contained in aCollectionOfClasses and their metaclasses"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3581
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3582
    |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
  3583
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3584
    title := titleArg.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3585
    list := self 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3586
                findImplementors:aSelectorString 
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3587
                in:aCollectionOfClasses 
15206
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3588
                ignoreCase:ignoreCase
988be4fe570b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15075
diff changeset
  3589
                match:(aSelectorString includesMatchCharacters and:[aSelectorString ~= '*']).
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3590
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  3591
    list size == 0 ifTrue:[
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3592
        aSelectorString numArgs == 0 ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3593
            selWithColon := aSelectorString , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3594
            selWithColon knownAsSymbol ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3595
                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
  3596
            ].            
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3597
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3598
        list2 size == 0 ifTrue:[
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3599
            "/ self showNoneFound:title.
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3600
            "/ ^ self
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3601
            lcSelector := aSelectorString asLowercase.
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3602
            
8688
71d973fdd817 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8685
diff changeset
  3603
            allSelectors := Set new.
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3604
            top20 := SortedCollection new.
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3605
            top20 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3606
                sortBlock:[:a :b | 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3607
                    |isPrefixOfA isPrefixOfB aDist bDist|
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3608
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3609
                    isPrefixOfA := (a asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3610
                    isPrefixOfB := (b asLowercase startsWith:lcSelector).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3611
                    (isPrefixOfA and:[isPrefixOfB not])
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3612
                    or:[ 
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3613
                        aDist := (a spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3614
                        bDist := (b spellAgainst:aSelectorString).
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3615
                        (isPrefixOfA and:[isPrefixOfB and:[aDist > bDist]])     
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3616
                        or:[ isPrefixOfB not and:[ aDist > bDist ]]]
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3617
                ].
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3618
            Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
17180
4ac997b21c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17056
diff changeset
  3619
                ((eachSelector asLowercase startsWith:lcSelector) or:[(eachSelector spellAgainst:aSelectorString) > 50]) ifTrue:[    
8759
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3620
                    (allSelectors includes:eachSelector) ifFalse:[
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3621
                        allSelectors add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3622
                        top20 add:eachSelector.
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3623
                        top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
1ef143757126 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8704
diff changeset
  3624
                    ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3625
                ]
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3626
            ].
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3627
            top20 isEmpty ifTrue:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3628
                Smalltalk allMethodsWithSelectorDo:[:eachMethod :eachSelector |
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3629
                    (eachSelector asLowercase spellAgainst:lcSelector) > 50 ifTrue:[    
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3630
                        (allSelectors includes:eachSelector) ifFalse:[
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3631
                            allSelectors add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3632
                            top20 add:eachSelector.
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3633
                            top20 size > 20 ifTrue:[ top20 removeLast. allSelectors := top20 asSet ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3634
                        ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3635
                    ]
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3636
                ].
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3637
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3638
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3639
            "/ 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
  3640
            but := ''.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3641
            (globalClass := Smalltalk classNamed:aSelectorString) notNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3642
                top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',aSelectorString,' <<'); yourself.
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3643
                but := '\But there exists a class by that name.'.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3644
            ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3645
                (aSelectorString knownAsSymbol 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3646
                and:[ (global := Smalltalk at:aSelectorString asSymbol) notNil ])
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3647
                ifTrue:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3648
                    global isBehavior ifTrue:[ 
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3649
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse alias ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3650
                        but := '\But there exists a global alias by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3651
                        globalClass := global
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3652
                    ] ifFalse:[
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3653
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class of ',aSelectorString,' <<'); yourself.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3654
                        but := '\But there exists a global by that name.'.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3655
                        globalClass := global class.
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3656
                    ]
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3657
                ].
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3658
            ].
15499
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3659
            "/ 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
  3660
            but isEmpty ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3661
                globalName := Smalltalk keys  
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3662
                                detect:[:nm | (nm includesString:'::')
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3663
                                               and:[ (nm includesString:aSelectorString) 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3664
                                               and:[ (nm endsWith:('::',aSelectorString)) ]]] 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3665
                                ifNone:nil. 
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3666
                globalName notNil ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3667
                    globalClass := Smalltalk at:globalName.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3668
                    globalClass isBehavior ifTrue:[
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3669
                        top20 := (OrderedCollection withAll:top20) addFirst:('>> Browse class ',globalClass name,' <<'); yourself.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3670
                        but := '\But there exists a class in some namespace by that name.'.
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3671
                    ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3672
                ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3673
            ].
387151a8648c class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15362
diff changeset
  3674
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3675
            choice := Dialog 
12621
a0af9112b051 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12575
diff changeset
  3676
                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
  3677
                fromList:top20 
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3678
                lines:10.
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3679
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3680
            choice notEmptyOrNil ifTrue:[
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3681
                (choice startsWith:'>>') ifTrue:[
13128
6f770c1da3f5 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13071
diff changeset
  3682
                    self openInClass:globalClass selector:nil.
12575
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3683
                ] ifFalse:[
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3684
                    self browseImplementorsOf:choice in:aCollectionOfClasses ignoreCase:ignoreCase title:'Implementors of ',choice.
7fd56ce01f68 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12504
diff changeset
  3685
                ]
8678
7d5bb9de7f7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8554
diff changeset
  3686
            ].
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3687
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3688
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3689
        rs := self classResources.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3690
        (Dialog confirm:((rs string:title) , 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3691
                         (rs string:'...\\... none found.') ,
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3692
                         (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
  3693
                             with:list2 size
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3694
                             with:selWithColon allBold)) withCRs) ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3695
            ^ nil
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3696
        ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3697
        list := list2.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3698
        title := title , ':'.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  3699
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3700
    ].
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3701
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3702
    ^ self browseMethods:list asOrderedCollection title:title
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3703
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3704
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3705
     SystemBrowser browseImplementorsOf:#+
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3706
                                     in:(Array with:Number
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3707
                                               with:Float
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3708
                                               with:SmallInteger)
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  3709
                                  title:'some implementors of +'
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3710
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3711
     NewSystemBrowser browseImplementorsOf:#+
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3712
                                     in:(Array with:Number
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3713
                                               with:Float
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3714
                                               with:SmallInteger)
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3715
                                  title:'some implementors of +'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3716
    "
132
claus
parents: 118
diff changeset
  3717
9685
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3718
    "Modified: / 04-09-1995 / 17:33:39 / claus"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3719
    "Modified: / 19-06-1996 / 14:19:02 / stefan"
629e1d789a2d changed: #browseImplementorsOf:in:ignoreCase:title:
Claus Gittinger <cg@exept.de>
parents: 9660
diff changeset
  3720
    "Modified: / 15-01-2011 / 14:35:56 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3721
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3722
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3723
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
  3724
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3725
     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
  3726
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3727
    ^ self
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3728
        browseImplementorsOf:aSelectorString 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3729
        in:aCollectionOfClasses 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3730
        ignoreCase:false
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3731
        title:title
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3732
!
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3733
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3734
browseImplementorsOf:aSelectorString under:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3735
    "launch a browser for all implementors of aSelector in aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3736
     and its subclasses"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3737
2623
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3738
    ^ self 
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3739
        browseImplementorsOf:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3740
        in:(aClass withAllSubclasses)
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3741
        title:(self classResources 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3742
                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
  3743
                with:aSelectorString
9e488daf53da allow for senders/implementors to be searched with caseIgnore
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  3744
                with:aClass name)
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3745
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3746
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3747
     SystemBrowser browseImplementorsOf:#+ under:Integer
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3748
     NewSystemBrowser browseImplementorsOf:#+ under:Integer
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3749
    "
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  3750
3360
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3751
    "Created: / 9.12.1995 / 18:06:09 / cg"
2eab40d1a498 isMeta/soleInstance -> theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 3354
diff changeset
  3752
    "Modified: / 5.11.2001 / 17:30:15 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3753
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3754
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3755
browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3756
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3757
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3758
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3759
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3760
        in:(Smalltalk allClasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3761
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3762
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3763
     SystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3764
     NewSystemBrowser browseImplementorsOfAny:#( #+ #- )
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3765
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3766
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3767
    "Created: / 9.12.1995 / 18:01:18 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3768
    "Modified: / 5.11.2001 / 17:31:11 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3769
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3770
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3771
browseImplementorsOfAny:setOfSelectors in:aSetOfClasses
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3772
    "launch a browser for all implementors of aSelector"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3773
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3774
    |title|
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3775
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3776
    setOfSelectors size == 1 ifTrue:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3777
        title := self classResources 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3778
                string:'Implementors of %1' 
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3779
                with:(setOfSelectors asOrderedCollection first).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3780
    ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3781
        setOfSelectors size == 2 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 or %2' 
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
                    with:(setOfSelectors asOrderedCollection second).
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3786
        ] ifFalse:[
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3787
            title := self classResources string:'Implementors of some'.
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3788
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3789
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3790
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3791
    ^ self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3792
        browseImplementorsOfAny:setOfSelectors
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3793
        in:aSetOfClasses
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  3794
        title:title
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3795
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3796
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3797
     SystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3798
     NewSystemBrowser browseImplementorsOf:#+ in:(Number withAllSubclasses)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3799
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3800
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3801
    "Created: / 10.7.1996 / 10:20:59 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3802
    "Modified: / 5.11.2001 / 17:30:57 / cg"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3803
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3804
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3805
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3806
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3807
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3808
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3809
    |list|
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3810
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3811
    list := self 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3812
                findImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3813
                in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3814
                ignoreCase:ignoreCase.
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 size == 0 ifTrue:[
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3817
        self showNoneFound:title.
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3818
        ^ nil
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3819
    ].
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3820
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3821
    ^ self browseMethods:list asOrderedCollection title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3822
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3823
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3824
     SystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3825
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3826
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3827
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3828
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3829
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3830
     NewSystemBrowser browseImplementorsOf:#+
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3831
                                     in:(Array with:Number
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3832
                                               with:Float
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3833
                                               with:SmallInteger)
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3834
                                  title:'some implementors of +'
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3835
    "
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3836
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3837
    "Modified: / 4.9.1995 / 17:33:39 / claus"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3838
    "Modified: / 19.6.1996 / 14:19:02 / stefan"
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3839
    "Modified: / 5.11.2001 / 17:30:38 / cg"
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
browseImplementorsOfAny:setOfSelectors in:aCollectionOfClasses title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3843
    "launch a browser for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  3844
     the classes contained in aCollectionOfClasses and their metaclasses"
3663
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3845
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3846
    ^ self
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3847
        browseImplementorsOfAny:setOfSelectors 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3848
        in:aCollectionOfClasses 
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3849
        ignoreCase:false
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3850
        title:title
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3851
!
5163f3c2d560 findImplementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  3852
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3853
browseInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3854
    "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
  3855
     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
  3856
     instvar is modified"
45
950b84ba89e6 *** empty log message ***
claus
parents: 41
diff changeset
  3857
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3858
    ^ self browseRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3859
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3860
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3861
browseInstRefsTo:varName in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3862
    "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
  3863
     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
  3864
     instvar is modified"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3865
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3866
    ^ self browseRefsTo:varName classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly title:title
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3867
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  3868
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3869
browseInstRefsTo:aString under:aClass modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3870
    "launch a browser for all methods in aClass and subclasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3871
     where the instVar named aString is referenced; 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3872
     if modsOnly is true, browse only methods where the instvar is modified"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3873
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3874
    ^ self browseInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3875
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3876
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3877
browseReferendsOf:aGlobalName
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3878
    "launch a browser for all methods referencing a global
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3879
     named aGlobalName. The argument may be a symbol, a string or
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3880
     a matchPattern.
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3881
    "
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3882
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3883
    ^ self browseReferendsOf:aGlobalName warnIfNone:true 
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3884
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3885
   "
14944
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3886
    UserPreferences current systemBrowserClass browseReferendsOf:#Transcript
5893ae3af14b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14653
diff changeset
  3887
    UserPreferences current systemBrowserClass browseReferendsOf:'Tr*'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3888
   "
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  3889
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3890
    "Modified: / 30.10.1997 / 23:45:52 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3891
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  3892
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3893
browseReferendsOf:aGlobalName ifNone:actionIfNone
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3894
    "launch a browser for all methods referencing a global
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3895
     named aGlobalName.
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3896
    "
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3897
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3898
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3899
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3900
        title:(self classResources string:'Users of: %1' with:aGlobalName)
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3901
        ifNone:actionIfNone
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
    "Modified: / 31.10.1997 / 15:42:05 / cg"
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3904
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3905
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3906
browseReferendsOf:aGlobalName in:aSetOfClasses
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3907
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3908
     named aGlobalName.
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3909
    "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3910
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3911
    ^ self browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:true 
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3912
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3913
   "
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3914
    Browser browseReferendsOf:#Transcript
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
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3917
    "Created: 10.7.1996 / 10:37:30 / cg"
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
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3920
browseReferendsOf:aGlobalName in:aSetOfClasses warnIfNone:doWarn
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3921
    "launch a browser for all methods referencing a global
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3922
     named aGlobalName.
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
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3925
    |globalsPlainName idx|
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3926
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3927
    globalsPlainName := aGlobalName.
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3928
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3929
        globalsPlainName := globalsPlainName copyFrom:idx+1
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3930
    ].
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3931
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3932
    ^ self browseForSymbol:aGlobalName
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3933
                        in:aSetOfClasses
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3934
                     title:(self classResources string:'Users of: %1' with:aGlobalName) 
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3935
                warnIfNone:doWarn
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  3936
                 searchFor:globalsPlainName
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3937
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3938
    "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
  3939
    "Modified: 31.10.1996 / 14:56:38 / cg"
666
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3940
!
c349555a5550 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  3941
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3942
browseReferendsOf:aGlobalName title:title ifNone:actionIfNone
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3943
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3944
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3945
     the search should be for a global named <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3946
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3947
    |searchBlock browser|
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3948
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3949
    searchBlock := self searchBlockForReferendsOf:aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3950
    browser := self 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3951
                browseMethodsWhere:searchBlock 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3952
                title:title 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3953
                ifNone:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3954
                    actionIfNone value. 
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3955
                    ^ nil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3956
                ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3957
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3958
    browser isNil ifTrue:[
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3959
        actionIfNone value
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3960
    ] ifFalse:[
9010
fa5c1fef4aef changed: #browseReferendsOf:title:ifNone:
Claus Gittinger <cg@exept.de>
parents: 9007
diff changeset
  3961
        browser autoSearchVariable:aGlobalName.
2828
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3962
    ].
6e54ebb9b75e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  3963
    ^ browser
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3964
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3965
    "
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3966
     Tools::NewSystemBrowser browseReferendsOf:'SortedCollection' title:'foo' ifNone:[ self halt ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  3967
    "
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3968
!
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3969
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3970
browseReferendsOf:aGlobalName title:title warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3971
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3972
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3973
     the search should be for a global named <namespace>::<aGlobalName>"
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3974
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3975
    |b|
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3976
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3977
    doWarn ifTrue: [
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  3978
        b := [self showNoneFound:title]
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3979
    ].
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3980
2409
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3981
    ^ self
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3982
        browseReferendsOf:aGlobalName 
656eeb7197fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2398
diff changeset
  3983
        title:title 
2414
a84eac935500 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2412
diff changeset
  3984
        ifNone:b
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3985
!
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3986
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3987
browseReferendsOf:aGlobalName warnIfNone:doWarn
17967
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3988
    "launch a browser for all methods referencing a global named aGlobalName.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3989
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  3990
     the search should be for a global named <namespace>::<aGlobalName>"
1367
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
    ^ self
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3993
        browseReferendsOf:aGlobalName 
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  3994
        title:(self classResources string:'Users of: %1' with:aGlobalName)
1367
80e92dd370c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
  3995
        warnIfNone:doWarn
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
    "Modified: / 31.10.1997 / 15:42:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3998
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  3999
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4000
browseReferendsOfUnboundGlobalsWithTitle:title ifNone:actionIfNone
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4001
    "launch a browser for all methods referencing an unbound global."
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4002
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  4003
    |searchBlock browser|
4198
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4004
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4005
    searchBlock := [:cls :mthd :sel | 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4006
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4007
                    |mSource globals potentialNames|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4008
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4009
                    "/ 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
  4010
                    mthd isLazyMethod ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4011
                        mSource := mthd source.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4012
                        mSource notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4013
                            globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4014
                        ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4015
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4016
                        "/ try hard to avoid the usedGlobals - its expensive
6640
326360e94271 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6581
diff changeset
  4017
                        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
  4018
                        potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4019
                            potentialNames := potentialNames select:[:lit | (Smalltalk at:lit) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4020
                            potentialNames notEmpty ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4021
                                globals := mthd usedGlobals.
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4022
                            ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4023
                        ]
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4024
                    ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4025
                    globals notNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4026
                        globals contains:[:aGlobalKey | (Smalltalk at:aGlobalKey asSymbol) isNil].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4027
                    ] ifFalse:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4028
                        false
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
                  ].
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4031
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4032
    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
  4033
    browser isNil ifTrue:[
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4034
        actionIfNone value
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
    ^ browser
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4037
!
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4038
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4039
browseReferendsOfUnboundGlobalsWithTitle:title warnIfNone:doWarn
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4040
    "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
  4041
    "
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
    |b|
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4044
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4045
    doWarn ifTrue: [
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4046
        b := [self showNoneFound:title]
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
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4049
    ^ self
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4050
        browseReferendsOfUnboundGlobalsWithTitle:title 
de8b73b42e1e added browse refs to unbound globals.
Claus Gittinger <cg@exept.de>
parents: 4167
diff changeset
  4051
        ifNone:b
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
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4054
browseRefsTo:aString classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4055
    "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
  4056
     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
  4057
     instvar is modified"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4058
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4059
    |title|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4060
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4061
    modsOnly ifTrue:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4062
        title := 'Modifications of: %1'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4063
    ] ifFalse:[
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4064
        title := 'References to: %1 '
203
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
    ^ self 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4067
        browseRefsTo:aString 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4068
        classVars:classVars 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4069
        in:aCollectionOfClasses 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4070
        modificationsOnly:modsOnly 
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4071
        title:(self classResources string:title with:aString)
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4072
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4073
    "Created: 9.12.1995 / 18:07:05 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4074
    "Modified: 9.12.1995 / 18:11:49 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4075
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4076
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4077
browseRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4078
    "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
  4079
     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
  4080
     instvar is modified"
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
    |filter browser pattern|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4083
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4084
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4085
    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
  4086
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4087
    browser notNil ifTrue:[
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4088
        modsOnly ifTrue:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4089
            pattern := varName , ' :='
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4090
        ] ifFalse:[
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4091
            pattern := varName
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4092
        ].
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4093
        browser autoSearch:pattern 
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4094
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4095
    ^ browser
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4096
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4097
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4098
browseSendersOf:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4099
    "launch a browser for all senders of aSelector"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4100
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4101
    ^ self browseAllCallsOn:aSelectorString
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4102
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4103
    "
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4104
     SystemBrowser browseSendersOf:#+
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4105
     UserPreferences current systemBrowserClass browseSendersOf:#+
3407
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4106
    "
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
    "Modified: / 10.7.1996 / 10:26:15 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4109
    "Created: / 13.11.2001 / 13:52:12 / cg"
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4110
!
7813f46be17f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  4111
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4112
browseSuperCallsIn:aCollectionOfClasses title:title
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4113
    "launch a browser for all super sends in aCollectionOfClasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4114
742
2ef5e22d8983 code cleanup (unused vars eliminated)
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
  4115
    |browser searchBlock|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4116
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4117
    searchBlock := [:class :method :s | 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4118
        |src parser|
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4119
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4120
        src := method source.
15334
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4121
        (src notNil and:[ (src findString:'super') ~~ 0 ])  ifTrue:[
8a75c5cb07b1 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15327
diff changeset
  4122
             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
  4123
                        parseMethod:src 
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4124
                        in:class 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4125
                        ignoreErrors:true 
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4126
                        ignoreWarnings:true.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4127
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4128
            (parser notNil and:[parser ~~ #Error and:[parser usesSuper]])
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4129
        ] ifFalse:[
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4130
            false
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4131
        ]
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4132
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4133
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4134
    browser := self browseMethodsIn:aCollectionOfClasses
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4135
                              where:searchBlock
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4136
                              title:title.
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
    browser notNil ifTrue:[
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4139
        browser autoSearch:'super' 
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4140
    ].
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4141
    ^ browser
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4142
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4143
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4144
     SystemBrowser
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4145
         browseSuperCallsIn:(Array with:SortedCollection)
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4146
                      title:'superSends in SortedCollection'
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4147
    "
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4148
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4149
    "Created: / 23-11-1995 / 14:08:55 / cg"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  4150
    "Modified: / 06-03-2007 / 14:00:12 / cg"
256
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4151
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4152
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4153
browseSuperCallsUnder:aClass
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4154
    "launch a browser for all supersends in aClass and subclasses"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4155
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4156
    ^ self browseSuperCallsIn:(aClass withAllSubclasses)
6476
01f8b6dfd829 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6368
diff changeset
  4157
                        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
  4158
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4159
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4160
     SystemBrowser browseSuperCallsUnder:Number
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4161
    "
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4162
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4163
    "Created: 23.11.1995 / 12:06:06 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4164
    "Modified: 9.12.1995 / 18:11:59 / cg"
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4165
!
5ae592de1b4f national strings
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
  4166
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4167
browseUsesOf:aClass
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4168
    |dict owners offsets
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4169
     sz  "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4170
     n   "{ Class: SmallInteger }"
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4171
     removeSet newDict|
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4172
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4173
    owners := ObjectMemory whoReferencesInstancesOf:aClass.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4174
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4175
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4176
     collect set of offsets in dict; key is class
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4177
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4178
    dict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4179
    owners do:[:someObject |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4180
        |cls create|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4181
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4182
        someObject isContext ifFalse:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4183
            "
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4184
             someObject refers to an instance of aClass;
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4185
             find out, which instVar(s)
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
            cls := someObject class.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4188
            cls ~~ Array ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4189
                n := cls instSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4190
                create := [|s| s := Set new. dict at:cls put:s. 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
                1 to:n do:[:i |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4193
                    |ref|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4194
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4195
                    ref := someObject instVarAt:i.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4196
                    (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4197
                        offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4198
                        offsets add:i.
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
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4201
                cls isVariable ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4202
                    cls isPointers ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4203
                        | idx "{ Class: SmallInteger }" |
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
                        sz := someObject basicSize.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4206
                        idx := 1.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4207
                        [idx <= sz] whileTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4208
                            |ref|
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
                            ref := someObject basicAt:idx.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4211
                            (ref isMemberOf:aClass) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4212
                                offsets := dict at:cls ifAbsent:create.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4213
                                offsets add:0.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4214
                                idx := sz
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4215
                            ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4216
                            idx := idx + 1
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4217
                        ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4218
                    ]        
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4219
                ]
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
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4222
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4223
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4224
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4225
     merge with superclass refs
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4226
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4227
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4228
        cls allSuperclasses do:[:aSuperclass |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4229
            |superSet|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4230
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4231
            superSet := dict at:aSuperclass ifAbsent:[].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4232
            superSet notNil ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4233
                superSet := dict at:aSuperclass.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4234
                removeSet := Set new.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4235
                set do:[:offset |
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4236
                    (superSet includes:offset) ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4237
                        removeSet add:offset
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4238
                    ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4239
                ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4240
                set removeAll:removeSet
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4241
            ]
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4242
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4243
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4244
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4245
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4246
     remove empty ones
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4247
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4248
    removeSet := Set new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4249
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4250
        set isEmpty ifTrue:[
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4251
            removeSet add:cls
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4252
        ]
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4253
    ].
9334
ed9742f1a717 changed: #browseUsesOf:
Claus Gittinger <cg@exept.de>
parents: 9313
diff changeset
  4254
    dict removeAllKeys:removeSet.
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4255
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4256
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4257
     replace the indices by real names
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4258
    "
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4259
    newDict := IdentityDictionary new.
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4260
    dict keysAndValuesDo:[:cls :set |
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4261
        |newSet names|
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4262
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4263
        names := cls allInstVarNames.
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4264
        newSet := set collect:[:index | 
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4265
                index == 0 ifTrue:['*indexed*'] ifFalse:[names at:index].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4266
        ].
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  4267
        newDict at:cls put:newSet
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4268
    ].
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4269
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4270
    newDict inspect
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4271
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  4272
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4273
filterToSearchRefsTo:varName classVars:classVars access:accessType
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4274
    "return a searchblock for variable references (obsolete)"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4275
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4276
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4277
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4278
        instVars:(classVars not) 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4279
        classVars:classVars 
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4280
        globals:false
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4281
        poolVars:false 
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4282
        access:accessType
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4283
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4284
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4285
filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4286
    "return a searchblock for variable references"
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4287
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4288
    ^ self
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4289
        filterToSearchRefsTo:varName 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4290
        classVars:classVars 
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4291
        access:(modsOnly ifTrue:#write ifFalse:#readWrite)
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4292
!
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4293
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4294
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
  4295
    "return a searchblock for variable references"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4296
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4297
    ^ self
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4298
        filterToSearchRefsTo:varName instVars:doInstVars classVars:doClassVars globals:doGlobals 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4299
        poolVars:false access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4300
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4301
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4302
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
  4303
    "return a searchblock for variable references"
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4304
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4305
    |searchBlock needMatch baseVarName|
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
    needMatch := varName includesMatchCharacters.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4308
    (varName includes:$:) ifTrue:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4309
        baseVarName := varName copyFrom:(varName lastIndexOf:$:)+1
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4310
    ] ifFalse:[
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4311
        baseVarName := varName
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4312
    ].
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4313
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4314
    searchBlock := [:c :m :s |
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4315
        |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
  4316
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4317
        result := false.
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4318
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4319
        "/ 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
  4320
        "/ 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
  4321
        "/ 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
  4322
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4323
        (m programmingLanguage isSmalltalk 
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4324
        or:[ m programmingLanguage isSTXJavaScript ]) ifTrue:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4325
            "/ For Smalltalk, use parser...
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4326
            src := m source.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4327
            src notNil ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4328
                needMatch ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4329
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4330
                     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
  4331
                     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
  4332
                    "
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4333
                    result := (src findString:baseVarName) ~~ 0.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4334
                ] ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4335
                    result := true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4336
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4337
                result ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4338
                    result := false.
17596
306cffcfa1a0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17543
diff changeset
  4339
                    parser := (m parserClass)
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4340
                                    parseMethod:src 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4341
                                    in:c 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4342
                                    ignoreErrors:true 
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4343
                                    ignoreWarnings:true.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4344
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4345
                    (parser notNil and:[parser ~~ #Error]) ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4346
                        vars := Set new.    
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4347
                        doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4348
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4349
                                instVars := parser readInstVars
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4350
                            ] ifFalse:[
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4351
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4352
                                    instVars := parser modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4353
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4354
                                    instVars := parser usedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4355
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4356
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4357
                            vars addAll:instVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4358
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4359
                        doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4360
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4361
                                classVars := parser readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4362
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4363
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4364
                                    classVars := parser modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4365
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4366
                                    classVars := parser usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4367
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4368
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4369
                            vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4370
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4371
                        doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4372
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4373
                                poolVars := parser readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4374
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4375
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4376
                                    poolVars := parser modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4377
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4378
                                    poolVars := parser usedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4379
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4380
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4381
                            vars addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4382
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4383
                        doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4384
                            accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4385
                                globals := parser readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4386
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4387
                                accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4388
                                    globals := parser modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4389
                                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4390
                                    globals := parser usedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4391
                                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4392
                            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4393
                            vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4394
                        ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4395
                        vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4396
                            needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4397
                                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
  4398
                            ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4399
                                result := vars includes:varName
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4400
                            ]
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4401
                        ]
7914
d8fa35236729 refactoring
Claus Gittinger <cg@exept.de>
parents: 7847
diff changeset
  4402
                    ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4403
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4404
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4405
        ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4406
            "/ For all other languages, ask method.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4407
            vars := Set new.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4408
            doInstVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4409
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4410
                    instVars := m readInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4411
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4412
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4413
                        instVars := m modifiedInstVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4414
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4415
                        instVars := m usedInstVars
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4416
                    ]
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4417
                ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4418
                vars addAll:instVars.
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4419
            ].
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4420
            doClassVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4421
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4422
                    classVars := m readClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4423
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4424
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4425
                        classVars := m modifiedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4426
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4427
                        classVars := m usedClassVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4428
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4429
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4430
                vars addAll:classVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4431
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4432
            doPoolVars ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4433
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4434
                    poolVars := m readPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4435
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4436
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4437
                        poolVars := m modifiedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4438
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4439
                        poolVars := m usedPoolVars
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4440
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4441
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4442
                vars addAll:poolVars.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4443
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4444
            doGlobals ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4445
                accessType == #read ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4446
                    globals := m readGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4447
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4448
                    accessType == #write ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4449
                        globals := m modifiedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4450
                    ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4451
                        globals := m usedGlobals
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4452
                    ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4453
                ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4454
                vars addAll:globals.
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4455
            ].
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4456
            vars size > 0 ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4457
                needMatch ifTrue:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4458
                    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
  4459
                ] ifFalse:[
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4460
                    result := vars includes:varName
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4461
                ]
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4462
            ]
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4463
        ].
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4464
        Processor yield.
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4465
        result
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  4466
    ].
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  4467
    ^ searchBlock
504
1bb5e6002ebb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
  4468
13525
a8195f61d4f2 Fixes required by Java class browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13438
diff changeset
  4469
    "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
  4470
    "Modified: / 23-07-2017 / 13:47:40 / cg"
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4471
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4472
2743
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4473
findAnyResourceIn:aCollectionOfClasses 
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4474
    "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
  4475
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4476
    ^ 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
  4477
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4478
    "
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4479
     SystemBrowser findAnyResourceIn:(ApplicationModel withAllSubclasses)
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
!
4fa5e36bef74 code cleanup: moved iconMethods from BrowserView to SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
  4482
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4483
findClassRefsTo:aString in:aCollectionOfClasses access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4484
    "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
  4485
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4486
     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
  4487
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4488
    ^ 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
  4489
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4490
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4491
findClassRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4492
    "return all methods in aCollectionOfClasses where the classVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4493
     aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4494
     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
  4495
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4496
    ^ self findRefsTo:aString classVars:true in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4497
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4498
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4499
findClassRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4500
    "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
  4501
     aString is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4502
     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
  4503
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4504
    ^ 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
  4505
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4506
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4507
findClassRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4508
    "return all methods in aClass where the classVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4509
     aString is referenced; 
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4510
     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
  4511
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4512
    ^ self findRefsTo:aString classVars:true in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4513
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4514
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4515
findClassRefsTo:aString under:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4516
    "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
  4517
     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
  4518
     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
  4519
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4520
    ^ 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
  4521
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4522
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4523
findClassRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4524
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4525
     where the classVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4526
     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
  4527
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4528
    ^ self findClassRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4529
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4530
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4531
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4532
findCode:aCodeString in:aCollectionOfClasses isMethod:isMethod 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4533
    "return a collection of all methods in aCollectionOfClasses  
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4534
     containing a matching piece of code.
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4535
     This may be slow, since source-code has to be scanned."
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4536
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4537
    |searchBlock|
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4538
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4539
    searchBlock := self searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  4540
    searchBlock isNil ifTrue:[ ^ nil].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4541
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4542
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4543
    "Modified: / 02-05-2011 / 13:25:15 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4544
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  4545
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4546
findCode:aCodeString inMethods:aCollectionOfMethods isMethod:isMethod 
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4547
    "return a collection of all methods in aCollectionOfMethods  
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4548
     containing a matching piece of code."
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4549
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4550
    |searchBlock|
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4551
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4552
    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
  4553
    searchBlock isNil ifTrue:[ ^ nil].
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4554
    ^ aCollectionOfMethods select:[:m | searchBlock value:m mclass value:m value:m selector].
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4555
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  4556
    "Modified: / 02-05-2011 / 13:25:39 / sr"
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4557
!
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  4558
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4559
findExceptionHandlersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4560
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4561
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4562
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4563
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4564
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4565
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4566
    "Modified: / 11-05-2010 / 16:18:55 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4567
!
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
findExceptionHandlersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4570
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4571
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4572
     This may be slow, since source-code has to be scanned."
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
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher handlesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4575
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4576
    "Created: / 11-05-2010 / 16:20:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4577
!
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
findExceptionRaisersIn:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4580
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4581
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4582
     This may be slow, since source-code has to be scanned."
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
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4585
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4586
    "Modified: / 11-05-2010 / 16:18:48 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4587
!
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
findExceptionRaisersInMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4590
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4591
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4592
     This may be slow, since source-code has to be scanned."
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
    ^ self findUsingParseTreeSearcher:(ParseTreeSearcher raisesException) inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4595
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4596
    "Created: / 11-05-2010 / 16:20:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4597
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  4598
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4599
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4600
    "return a collection of all help-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4601
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4602
     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
  4603
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4604
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4605
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4606
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4607
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4608
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4609
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4610
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4611
findHelpSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4612
    "return a collection of all help-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4613
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4614
     This may be slow, since source-code has to be scanned."
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
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4617
        findSpecMethodsFor:#help
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4618
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4619
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4620
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4621
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4622
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4623
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4624
findImplementors:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4625
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4626
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4627
     Return a collection of methods"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4628
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4629
    |lcSelector list compare testST testJava srchBlockST srchBlockJava collectionOfClasses|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4630
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4631
    list := IdentitySet new.
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4632
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4633
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4634
    (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
  4635
        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
  4636
    ] ifFalse:[
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4637
        compare := [:sel :search | sel = search].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4638
    ].
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4639
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4640
    ignoreCase == true ifTrue:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4641
        lcSelector := aSelectorMatchString asLowercase.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4642
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4643
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4644
        testJava := [:mthdSelector :aMethod | (compare value:lcSelector value:aMethod name asLowercase) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4645
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4646
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4647
        testJava := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:aMethod name) ].
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4648
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4649
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4650
    srchBlockST := [:mthdSelector :mthd | (testST value:mthdSelector value:mthd) ifTrue:[ list add:mthd]].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4651
    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
  4652
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4653
    (collectionOfClasses := aCollectionOfClasses) isNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4654
        collectionOfClasses := Smalltalk allClasses
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4655
    ].    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  4656
    collectionOfClasses do:[:aClass |
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4657
        |srchBlock|
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4658
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4659
        aClass isObsolete ifFalse:[
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4660
            srchBlock := aClass isJavaClass 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4661
                            ifTrue:[ srchBlockJava ]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4662
                            ifFalse:[ srchBlockST ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4663
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4664
            aClass methodDictionary keysAndValuesDo:srchBlock.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4665
            aClass isMeta ifFalse:[
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4666
                aClass class methodDictionary keysAndValuesDo:srchBlock
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4667
            ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4668
        ]
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4669
    ].
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4670
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4671
    ^ list
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
    "
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4674
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4675
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4676
        in: { Number . Float . SmallInteger }
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4677
        ignoreCase: false
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4678
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4679
     Time millisecondsToRun:[    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4680
         SystemBrowser 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4681
            findImplementorsOf:#add:
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4682
            in: (Smalltalk allClasses)
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4683
            ignoreCase: false
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4684
     ]
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4685
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4686
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4687
    "Modified (format): / 22-03-2012 / 07:28:50 / cg"
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4688
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4689
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4690
findImplementors:aSelectorMatchString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4691
    "search for all implementors of aSelector in
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  4692
     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
  4693
     Return a collection of methods"
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4694
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4695
    |list compare testST testJava lcSelector|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4696
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4697
    list := IdentitySet new.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4698
    aSelectorMatchString size == 0 ifTrue:[ ^ list ].
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
    doMatch ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4701
        compare := [:sel :search | sel match:search].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4702
    ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4703
        compare := [:sel :search | sel = search].
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
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4706
    ignoreCase == true ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4707
        lcSelector := aSelectorMatchString asLowercase.
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4708
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4709
        testST := [:mthdSelector :aMethod | (compare value:lcSelector value:mthdSelector asLowercase) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4710
        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
  4711
    ] ifFalse:[
15075
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4712
        testST := [:mthdSelector :aMethod | (compare value:aSelectorMatchString value:mthdSelector) ].
8ee8b91f6c69 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 14944
diff changeset
  4713
        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
  4714
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4715
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4716
    aCollectionOfMethods do:[:eachMethod |
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4717
        |cls sel testBlock|
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4718
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4719
        cls := eachMethod mclass.
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4720
        (cls isNil or:[cls isObsolete]) ifFalse:[
6776
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4721
            cls isJavaClass ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4722
                testBlock := testJava
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4723
            ] ifFalse:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4724
                testBlock := testST
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4725
            ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4726
            sel := eachMethod selector.    
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4727
            (testBlock value:sel value:eachMethod) ifTrue:[
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4728
                list add:eachMethod
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4729
            ].
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
    ].
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4732
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4733
    ^ list
7066
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4734
43640ba63db6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6955
diff changeset
  4735
    "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
  4736
!
5f5fd533b1f4 implementors of from implementors of-list
Claus Gittinger <cg@exept.de>
parents: 6705
diff changeset
  4737
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4738
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
  4739
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4740
     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
  4741
     Return a collection of methods"
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4742
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4743
    ^ self 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4744
        findImplementors:aSelectorMatchString 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4745
        in:aCollectionOfClasses 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4746
        ignoreCase:ignoreCase 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4747
        match:true
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4748
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4749
    "
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4750
     SystemBrowser 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4751
        findImplementorsOf:#+
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4752
        in:{ Number . Float . SmallInteger }
16443
7ce9ab5ce5e2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16395
diff changeset
  4753
        ignoreCase:false
11452
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
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  4756
    "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
  4757
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4758
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4759
findImplementorsMatchingAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4760
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4761
     the classes contained in aCollectionOfClasses and their metaclasses.
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4762
     Return a collection of methods.
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4763
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4764
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4765
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4766
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4767
            self findImplementorsMatching:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4768
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4769
                 ignoreCase:ignoreCase.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4770
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4771
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4772
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4773
"/
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4774
"/    implementors := IdentitySet new.
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4775
"/    aCollectionOfSelectors do:[:eachSelector |
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4776
"/        implementors addAll:(self findImplementorsMatching:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4777
"/    ].
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4778
"/    ^ implementors
6051
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4779
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4780
    "
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4781
     self
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4782
        findImplementorsMatchingAny:#( 'at*:' '*size')
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4783
        in:(Smalltalk allClasses) 
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4784
        ignoreCase:true
adc2da07dfe8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5997
diff changeset
  4785
    "
3675
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4786
!
5208ac7b25a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4787
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4788
findImplementorsOf:aSelectorMatchString in:aCollectionOfClasses ignoreCase:ignoreCase
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4789
    "search for all implementors of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4790
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4791
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4792
6480
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4793
    ^ self 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4794
        findImplementors:aSelectorMatchString 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4795
        in:aCollectionOfClasses 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4796
        ignoreCase:ignoreCase 
a84b7a241f0a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6476
diff changeset
  4797
        match:false
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4798
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4799
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4800
     SystemBrowser findImplementorsOf:#+
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4801
                                   in:(Array with:Number
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4802
                                             with:Float
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4803
                                             with:SmallInteger)
2642
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
!
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  4806
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4807
findImplementorsOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4808
    "search for all implementors of any in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  4809
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4810
     Return a collection of methods.
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4811
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4812
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4813
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4814
        collectAll:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4815
            self findImplementorsOf:eachSelector 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4816
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4817
                 ignoreCase:ignoreCase.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4818
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4819
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4820
"/    |implementors|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4821
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4822
"/    implementors := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4823
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4824
"/        implementors addAll:(self findImplementorsOf:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase).
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4825
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  4826
"/    ^ implementors
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4827
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  4828
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4829
findInstRefsTo:aString in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4830
    "return all methods in aCollectionOfClasses where the instVar named
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4831
     aString is referenced; 
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4832
     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
  4833
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4834
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4835
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4836
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4837
findInstRefsTo:aString in:aCollectionOfClasses modificationsOnly:modsOnly
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4838
    "return all methods in aCollectionOfClasses where the instVar named
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4839
     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
  4840
     instvar is modified"
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4841
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4842
    ^ self findRefsTo:aString classVars:false in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4843
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4844
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4845
findInstRefsTo:aString inClass:aClass access:accessType
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4846
    "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
  4847
     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
  4848
     instvar is modified"
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4849
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4850
    ^ 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
  4851
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4852
2728
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4853
findInstRefsTo:aString inClass:aClass modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4854
    "return all methods in aClass where the instVar named
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4855
     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
  4856
     instvar is modified"
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4857
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4858
    ^ self findRefsTo:aString classVars:false in:(Array with:aClass) modificationsOnly:modsOnly
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4859
!
5ba2a9de7472 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4860
2741
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4861
findInstRefsTo:aString under:aClass access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4862
    "return all methods in aClass and subclasses
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4863
     where the classVar named aString is referenced; 
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4864
     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
  4865
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4866
    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) access:accessType
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4867
!
aedd23d595cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  4868
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4869
findInstRefsTo:aString under:aClass modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4870
    "return all methods in aClass and subclasses
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4871
     where the instVar named aString is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4872
     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
  4873
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4874
    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4875
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4876
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4877
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4878
    "return a collection of all menu-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4879
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4880
     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
  4881
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4882
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4883
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4884
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4885
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4886
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4887
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4888
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4889
findMenuSpecMethodsWithString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4890
    "return a collection of all menu-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4891
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4892
     This may be slow, since source-code has to be scanned."
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
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4895
        findSpecMethodsFor:#menu
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4896
        withString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4897
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4898
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  4899
        match:doMatch
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4900
!
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  4901
11934
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4902
findPoolVarRefsTo:aString inClass:aClass access:accessType
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4903
    "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
  4904
     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
  4905
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4906
    |filter|
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4907
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4908
    filter := self 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4909
                filterToSearchRefsTo:aString 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4910
                instVars:false classVars:false globals:false poolVars:true 
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4911
                access:accessType.
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
    ^ self findMethodsIn:(Array with:aClass) inst:true class:true where:filter.
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4914
!
ffb94d7169cc pool variable search
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  4915
2736
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4916
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
  4917
    "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
  4918
     varName is referenced; 
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4919
     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
  4920
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4921
    |filter|
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4922
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4923
    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
  4924
    ^ 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
  4925
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4926
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4927
     self
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4928
        findRefsTo:'x'
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4929
        classVars:false
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4930
        in:(Array with:Point)
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4931
        modificationsOnly:true
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4932
    "
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4933
!
5b585170e14a added search to find readers of an isntVar
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
  4934
2677
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4935
findRefsTo:varName classVars:classVars in:aCollectionOfClasses modificationsOnly:modsOnly
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4936
    "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
  4937
     varName is referenced; 
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4938
     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
  4939
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4940
    |filter|
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4941
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4942
    filter := self filterToSearchRefsTo:varName classVars:classVars modificationsOnly:modsOnly.
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4943
    ^ self findMethodsIn:aCollectionOfClasses inst:true class:classVars where:filter.
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
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4946
     self
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4947
        findRefsTo:'x'
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4948
        classVars:false
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4949
        in:(Array with:Point)
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4950
        modificationsOnly:true
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4951
    "
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4952
!
a5ef0e288aae search protocol enhanced
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  4953
2692
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4954
findResource:aResourceSymbolOrCollectionOfSymbols in:aCollectionOfClasses 
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4955
    "return a collection of all methods in aCollectionOfClasses  
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4956
     containing a resource."
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4957
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4958
    |searchBlock|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4959
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4960
    aResourceSymbolOrCollectionOfSymbols isSymbol ifTrue:[
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4961
        searchBlock := [:c :m :sel | |resources|
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4962
                            (resources := m resources) size > 0
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4963
                            and:[resources includesKey:aResourceSymbolOrCollectionOfSymbols]
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
    ] ifFalse:[
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 keys includesAny: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
    ].
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4971
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4972
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4973
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
     SystemBrowser findResource:#image in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4976
     SystemBrowser findResource:#menu in:(ApplicationModel withAllSubclasses)
652bbda35217 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  4977
     SystemBrowser findResource:#(menu programMenu) in:(ApplicationModel withAllSubclasses)
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
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4981
findResource:aStringOrEmpty match:doMatch ignoreCase:ignoreCase in:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4982
    "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
  4983
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4984
    |matchCheck lcSearchString|
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4985
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4986
    aStringOrEmpty isEmptyOrNil ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4987
        matchCheck := [:aResourceName | true ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4988
    ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4989
        doMatch ifTrue:[
13438
06f6d5fc73ef class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13365
diff changeset
  4990
            matchCheck := [:aResourceName | aStringOrEmpty match:aResourceName caseSensitive:ignoreCase not]
10188
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4991
        ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4992
            ignoreCase ifTrue:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4993
                lcSearchString := aStringOrEmpty asLowercase.
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4994
                matchCheck := [:aResourceName | aResourceName asLowercase = lcSearchString]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4995
            ] ifFalse:[
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4996
                matchCheck := [:aResourceName | aResourceName = aStringOrEmpty ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4997
            ]
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4998
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  4999
    ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5000
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5001
    ^ self 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5002
        findMethodsIn:aCollectionOfClasses 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5003
        where:[:c :m :sel | 
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5004
            m hasResource
12073
d63b17e5c9c8 class: SystemBrowser
Stefan Vogel <sv@exept.de>
parents: 12056
diff changeset
  5005
            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
  5006
        ].
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5007
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5008
    "
95e82ec734ff added: #findResource:match:ignoreCase:in:
Claus Gittinger <cg@exept.de>
parents: 10173
diff changeset
  5009
     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
  5010
    "
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
    "Created: / 06-07-2011 / 12:14:24 / cg"
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
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5015
findRespondersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5016
    "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
  5017
     Search within the classes contained in aCollectionOfClasses and their metaclasses.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5018
     This will skip over unloaded classes.
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5019
     Return a collection of classes."
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5020
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5021
    ^ Smalltalk allClasses 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5022
        select:[:cls |
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5023
            cls isLoaded 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5024
            and:[ aCollectionOfSelectors conform:[:sel | cls canUnderstand:sel]]].
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
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5027
     to find classes which respond to both indexOf: and replaceFromIndex:toIndex:,
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5028
     use:
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5029
        SystemBrowser 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5030
            findRespondersOfAll:#( indexOf: removeFromIndex:toIndex: ) 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5031
            in:nil 
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5032
            ignoreCase:false
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5033
    "
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5034
!
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5035
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5036
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5037
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5038
     the classes contained in aCollectionOfClasses and their metaclasses.
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5039
     Return a collection of methods"
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5040
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5041
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:true
2642
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5042
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5043
    "
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5044
     SystemBrowser findSendersOf:#+
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5045
                   in:(Array with:Number
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5046
                             with:Float
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5047
                             with:SmallInteger)
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5048
                   ignoreCase:false
cab6366238a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  5049
    "
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5050
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5051
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5052
findSendersOf:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5053
    "search for all senders of aSelector in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5054
     the classes contained in aCollectionOfClasses and their metaclasses.
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5055
     Return a collection of methods"
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
    ^ self allCallsOn:aSelectorString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5058
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5059
    "
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5060
     SystemBrowser findSendersOf:#+
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5061
                   in:(Array with:Number
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5062
                             with:Float
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5063
                             with:SmallInteger)
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5064
                   ignoreCase:false
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5065
    "
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5066
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5067
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5068
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5069
    "search for all senders of aSelector in aCollectionOfMethods.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5070
     Return a collection of methods"
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5071
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5072
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5073
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5074
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase.
9313
44795fcbf414 changed: #findSendersOf:inMethods:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 9312
diff changeset
  5075
    searchBlock isNil ifTrue:[^ #() ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5076
    ^ 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
  5077
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5078
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5079
findSendersOf:aSelectorString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5080
    "search for all senders of aSelector in aCollectionOfMethods.
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5081
     Return a collection of methods"
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5082
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5083
    |searchBlock|
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5084
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5085
    searchBlock := self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatch.
9312
71f84182390a changed: #findSendersOf:inMethods:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 9189
diff changeset
  5086
    searchBlock isNil ifTrue:[^ #() ].
4350
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5087
    ^ 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
  5088
!
0283d657411b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4341
diff changeset
  5089
17624
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5090
findSendersOfAll:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5091
    "search for methods which send all selectors in aCollectionOfSelectors in
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5092
     the classes contained in aCollectionOfClasses and their metaclasses.
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5093
     Return a collection of methods."
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5094
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5095
    ^ (self allCallsOn:(aCollectionOfSelectors first) 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5096
                 in:aCollectionOfClasses 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5097
                 ignoreCase:ignoreCase
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5098
                 match:false
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5099
    ) select:[:mthd |
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5100
        mthd messagesSent includesAll:aCollectionOfSelectors
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5101
    ].
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5102
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5103
    "
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5104
     SystemBrowser 
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5105
        findSendersOfAll:#(#'+' #'-')
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5106
        in:(Smalltalk allClasses)
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5107
        ignoreCase:false  
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
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5110
    "Created: / 24-08-2017 / 13:10:25 / cg"
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5111
!
241986474521 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17605
diff changeset
  5112
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5113
findSendersOfAny:aCollectionOfSelectors in:aCollectionOfClasses ignoreCase:ignoreCase
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5114
    "search for all senders of any selector in aCollectionOfSelectors in
16586
60dcd6ba7859 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 16529
diff changeset
  5115
     the classes contained in aCollectionOfClasses and their metaclasses.
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5116
     Return a collection of methods.
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5117
     CAVEAT: searches multiple times (could be tuned alot if heavily used)"
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5118
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5119
    ^ aCollectionOfSelectors 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5120
        collectAll:[:eachSelector |
6184
bcb22487bc67 senders of any - duplicates
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  5121
            (self allCallsOn:eachSelector 
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5122
                 in:aCollectionOfClasses 
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5123
                 ignoreCase:ignoreCase
6184
bcb22487bc67 senders of any - duplicates
Claus Gittinger <cg@exept.de>
parents: 6134
diff changeset
  5124
                 match:false) asSet.
6052
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5125
        ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5126
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5127
"/    |allSenders|
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5128
"/
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5129
"/    allSenders := IdentitySet new.
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5130
"/    aCollectionOfSelectors do:[:eachSelector |
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5131
"/        allSenders addAll:(self allCallsOn:eachSelector in:aCollectionOfClasses ignoreCase:ignoreCase match:true)
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5132
"/    ].
e9e1f68e0b2e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6051
diff changeset
  5133
"/    ^ allSenders
2811
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5134
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5135
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5136
     SystemBrowser findSendersOfAny:#(#'+' #'-')
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5137
                   in:(Array with:Number
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5138
                             with:Float
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5139
                             with:SmallInteger)
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5140
                   ignoreCase:false  
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5141
    "
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5142
!
85f8454fbd26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
  5143
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5144
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5145
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5146
     containing a string in their source.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5147
     This may be slow, since source-code has to be scanned."
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5148
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5149
    self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5150
        findSpecMethodsFor:specSymbol 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5151
        withString:aString 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5152
        in:aCollectionOfClasses 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5153
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5154
        match:true
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5155
!
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5156
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5157
findSpecMethodsFor:specSymbol withString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5158
    "return a collection of all specSymbol-spec methods in aCollectionOfClasses  
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5159
     containing a string in their source.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5160
     This may be slow, since source-code has to be scanned."
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
    |searchBlock innerSearchBlock|
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5163
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5164
    innerSearchBlock := self searchBlockForString:aString ignoreCase:ignoreCase match:doMatch.
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5165
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5166
    searchBlock := [:c :m :sel | 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5167
                            |resources| 
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5168
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5169
                            ((resources := m resources) size > 0
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5170
                            and:[resources includesKey:specSymbol]) ifTrue:[
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5171
                                innerSearchBlock value:c value:m value:sel
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5172
                            ]
8129
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5173
                       ].
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5174
3314
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5175
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
adb48690e31d more searches
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
  5176
!
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
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase 
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5179
    "return a collection of all methods in aCollectionOfClasses  
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5180
     containing a string in their source.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5181
     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
  5182
    
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5183
    ^ self 
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5184
        findString:aString
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5185
        in:aCollectionOfClasses
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5186
        ignoreCase:ignoreCase
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5187
        match:true
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5188
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5189
    "
9bb5ca89393a find code cleanup
Claus Gittinger <cg@exept.de>
parents: 8047
diff changeset
  5190
     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
  5191
    "
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5192
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5193
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5194
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5195
    "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
  5196
     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
  5197
     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
  5198
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5199
    ^ 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
  5200
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5201
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5202
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5203
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5204
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5205
        ignoreCase:false
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
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5208
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5209
findString:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5210
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5211
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5212
     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
  5213
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5214
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5215
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5216
    searchBlock := 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5217
        self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5218
            searchBlockForString:aString 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5219
            ignoreCase:ignoreCase 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5220
            match:doMatch
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5221
            fullWordsOnly:fullWordsOnly.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5222
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5223
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5224
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5225
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5226
    "
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5227
!
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
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
5243
6b84674b60f4 +findCode:inMethods:
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5230
    "return a collection of all methods in aCollectionOfClasses  
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5231
     containing a string in their source.
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5232
     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
  5233
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5234
    ^ 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
  5235
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5236
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5237
findString:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5238
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5239
     containing a string in their source.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5240
     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
  5241
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5242
    |searchBlock|
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5243
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5244
    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
  5245
    ^ 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
  5246
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5247
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5248
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5249
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5250
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5251
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5252
    ^ self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5253
        findStringLiteral:aString in:aCollectionOfClasses 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5254
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5255
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5256
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5257
     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
  5258
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5259
!
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
findStringLiteral:aString in:aCollectionOfClasses ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5262
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5263
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5264
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5265
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5266
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5267
    searchBlock := self searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5268
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5269
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5270
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5271
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5272
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5273
!
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
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5276
    "return a collection of all methods in aCollectionOfClasses  
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5277
     containing a string in any of their string-literals."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5278
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5279
    ^ self
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5280
        findStringLiteral:aString inMethods:aCollectionOfMethods
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5281
        ignoreCase:ignoreCase match:doMatch fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5282
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5283
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5284
findStringLiteral:aString inMethods:aCollectionOfMethods ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5285
    "return a collection of all methods in aCollectionOfClasses  
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5286
     containing a string in any of their string-literals."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5287
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5288
    |searchBlock|
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5289
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5290
    searchBlock := self searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatch fullWordsOnly:fullWordsOnly.
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5291
    ^ 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
  5292
!
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5293
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5294
findUsingParseTreeSearcher:searcher in:aCollectionOfClasses
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5295
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5296
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5297
     This may be slow, since source-code has to be scanned."
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5298
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5299
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5300
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5301
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5302
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5303
    ^ self findMethodsIn:aCollectionOfClasses where:searchBlock.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5304
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5305
    "Created: / 11-05-2010 / 16:18:36 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5306
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5307
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5308
findUsingParseTreeSearcher:searcher inMethods:aCollectionOfMethods
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5309
    "return a collection of all methods in aCollectionOfClasses  
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5310
     containing an exception raiser.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5311
     This may be slow, since source-code has to be scanned."
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
    |searchBlock|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5314
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5315
    searchBlock := self searchBlockForParseTreeSearcher:searcher isMethod:false.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5316
    searchBlock isNil ifTrue:[ ^ nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5317
    ^ 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
  5318
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5319
    "Created: / 11-05-2010 / 16:20:12 / cg"
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5320
!
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5321
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5322
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase
4270
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5323
    ^ self searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:true
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5324
!
edcb3dfb262d senders of refactored
Claus Gittinger <cg@exept.de>
parents: 4235
diff changeset
  5325
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5326
searchBlockForAllCallsOn:aSelectorString ignoreCase:ignoreCase match:doMatchArg
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5327
    "return an optimized search block for the senders search.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5328
     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
  5329
     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
  5330
     search is wanted 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5331
     (these operations are executed a zillion times in an inner loop,
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5332
      therefore, the speedup is noticable)"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5333
     
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5334
    |doMatch sel quickSearch idx|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5335
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5336
    doMatch := doMatchArg.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5337
    (doMatch and:[aSelectorString = '*']) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5338
        "a trivial block, which matches everything"
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5339
        ^ [:class :method :s | true].
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
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5342
    aSelectorString includesMatchCharacters ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5343
        doMatch := false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5344
    ].
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
    (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
  5347
        "/ a matchString or ignoreCase - need string matching procedure
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5348
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5349
        quickSearch := aSelectorString.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5350
        (quickSearch startsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5351
            quickSearch := quickSearch copyButFirst
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5352
        ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5353
        (quickSearch endsWith:'*') ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5354
            quickSearch := quickSearch copyButLast
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5355
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5356
        
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5357
        "/ 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
  5358
        "/ 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
  5359
        (idx := quickSearch indexOfAny:'*#[:') ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5360
            quickSearch := quickSearch copyTo:idx-1.
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5361
        ].
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5362
        
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5363
        (ignoreCase and:[quickSearch includesMatchCharacters not]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5364
            doMatch ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5365
                ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5366
                    |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5367
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5368
                    inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5369
                    method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5370
                    method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5371
                        src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5372
                        (src notNil and:[src includesString:aSelectorString caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5373
                            method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5374
                        ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5375
                            skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5376
                        ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5377
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5378
                    skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5379
                        inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5380
                            (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5381
                                literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5382
                                    (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5383
                                    and:[(aLiteral sameAs:aSelectorString)]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5384
                                ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5385
                    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5386
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5387
                    inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5388
                    and:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5389
                        method messagesSent contains:[:msg | msg sameAs:aSelectorString ]
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
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5393
            
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5394
            ^ [:class :methodArg :s |
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5395
                |method src inLiterals skip|
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5396
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5397
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5398
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5399
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5400
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5401
                    (src notNil and:[src includesString:quickSearch caseSensitive:false]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5402
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5403
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5404
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5405
                    ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5406
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5407
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5408
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5409
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5410
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5411
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5412
                                and:[(aLiteral includesString:quickSearch caseSensitive:false)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5413
                                and:[(aSelectorString match:aLiteral caseSensitive:false)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5414
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5415
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5416
      
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5417
                inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5418
                and:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5419
                    method messagesSent 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5420
                        contains:[:sel | aSelectorString match:aSelectorString caseSensitive:false]
16337
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
           ].
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5423
        ].
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5424
        
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5425
        (ignoreCase or:[quickSearch includesMatchCharacters]) ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5426
            ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5427
                |method src inLiterals skip|
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5428
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5429
                inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5430
                method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5431
                method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5432
                    src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5433
                    (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5434
                        method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5435
                    ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5436
                        skip := true
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5437
                    ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5438
                ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5439
                skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5440
                    inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5441
                        (method 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5442
                            literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5443
                                (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5444
                                and:[(aLiteral includesString:quickSearch)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5445
                                and:[(aSelectorString match:aLiteral)]]] 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5446
                            ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5447
                ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5448
                inLiterals and:[ method messagesSent includes:aSelectorString]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5449
           ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5450
        ]. 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5451
        ^ [:class :methodArg :s |
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5452
            |method src inLiterals skip|
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5453
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5454
            method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5455
            "/ expensive search
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5456
            inLiterals := skip := false.
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5457
            method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5458
                src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5459
                (src notNil and:[src includesMatchString:aSelectorString]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5460
                    method makeRealMethod.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5461
                ] ifFalse:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5462
                    skip := true.
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5463
                ].
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5464
            ].    
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5465
            skip ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5466
                inLiterals := 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5467
                    (method literalsDetect:[:aLiteral|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5468
                        (aLiteral isMemberOf:Symbol) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5469
                        and:[ aSelectorString match:aLiteral asLowercase caseSensitive:ignoreCase not]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5470
                    ] ifNone:nil) notNil
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5471
            ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5472
            inLiterals 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5473
            and:[ 
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5474
                method messagesSent 
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5475
                    contains:[:anySelector | 
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5476
                        aSelectorString match:anySelector caseSensitive:ignoreCase not
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5477
                    ] 
16337
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5478
            ]
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5479
       ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5480
    ].
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5481
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5482
    "/ no matchString and not ignoring case - can do it much faster
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5483
    sel := aSelectorString asSymbolIfInterned.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5484
    sel isNil ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5485
        ^ nil     "/ none
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
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5488
    quickSearch := sel.
16395
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5489
    "/ 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
  5490
    (idx := quickSearch indexOf:$:) ~~ 0 ifTrue:[
cf67c42049ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16384
diff changeset
  5491
        quickSearch := quickSearch copyTo:idx-1.
16337
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
    
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5494
    ^ [:class :methodArg :s |
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5495
        |method src|
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5496
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5497
        method := methodArg originalMethodIfWrapped.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5498
        method isLazyMethod ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5499
            src := method source.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5500
            (src notNil and:[src includesString:quickSearch]) ifTrue:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5501
                method makeRealMethod.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5502
                method referencesLiteral: "sends:" sel.
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5503
            ] ifFalse:[
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5504
                false
7a86c38773bd #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16238
diff changeset
  5505
            ]
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5506
        ] ifFalse:[
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5507
            method sendsSelector:sel
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5508
        ]
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5509
    ].
10416
82d17ccb68ad changed: #searchBlockForAllCallsOn:ignoreCase:match:
Claus Gittinger <cg@exept.de>
parents: 10386
diff changeset
  5510
17328
e110bd817e78 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17180
diff changeset
  5511
    "Modified: / 05-02-2017 / 01:25:14 / cg"
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5512
!
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5513
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5514
searchBlockForCode:aCodeString in:aCollectionOfClasses isMethod:isMethod
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5515
    "return a block to search for a piece of code.
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5516
     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
  5517
     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
  5518
        - 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
  5519
          methods which also send all those messages,
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5520
        - 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
  5521
          methods which also refer to those globals"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5522
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5523
    |errAction searchTree searcher globalVariablesUsed usedSymbols usedStrings
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5524
     sentMessages searchBlock foundMatch numMethodArgs methodSelector nameSpacesForGlobals|
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5525
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5526
"/self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5527
"/rule := ParseTreeLintRule 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5528
"/    createParseTreeRule: (Array with: aCodeString)
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5529
"/    method: isMethod
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5530
"/    name: 'Search for: ' , aCodeString.
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
"/
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5533
"/    searchBlock := [:c :m :sel | 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5534
"/        rslt := SmalllintChecker
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5535
"/            runRule:rule
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5536
"/            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
  5537
"/        
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5538
"/        self halt.
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5539
"/    ].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5540
"/^ searchBlock.
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5541
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5542
    errAction := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5543
        [:errMsg :pos | 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5544
            Dialog warn:('Error during pattern parse: %1 (position %2)'
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5545
                            bindWith:errMsg with:pos).
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5546
           ^ nil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5547
        ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5548
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5549
    isMethod ifTrue:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5550
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5551
                    parseRewriteMethod:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5552
                    onError: errAction.
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5553
        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
  5554
        methodSelector := searchTree selector.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5555
    ] ifFalse:[
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5556
        searchTree := RBParser 
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5557
                    parseRewriteExpression:aCodeString 
5226
35a9709e73ee code search
Claus Gittinger <cg@exept.de>
parents: 5135
diff changeset
  5558
                    onError: errAction.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5559
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5560
    
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5561
    "/ extract messages sent by the pattern
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5562
    Error handle:[:ex |
12837
80c40ce2cd56 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12831
diff changeset
  5563
        self halt:'check this, please'.
6368
ef36274cbbf1 faster code-search
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  5564
    ] do:[
6549
cd47faed29f6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6546
diff changeset
  5565
        sentMessages := searchTree sentMessages.         
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5566
    ].
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5567
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5568
    nameSpacesForGlobals := Set with:Smalltalk.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5569
    aCollectionOfClasses do:[:eachClass |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5570
        nameSpacesForGlobals add:eachClass topNameSpace
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5571
    ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5572
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5573
    "/ extract globals used by the pattern
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5574
    globalVariablesUsed := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5575
    searchTree referencedVariables do:[:node |
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5576
        |nm ns alternatives|
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5577
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5578
        node isPatternNode ifFalse:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5579
            nm := node name.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5580
            ns := nameSpacesForGlobals detect:[:ns | ns includesKey: nm asSymbol] ifNone:nil.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5581
            ns notNil ifTrue:[
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5582
                alternatives := OrderedCollection new.
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5583
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5584
                ('Smalltalk::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: ('Smalltalk::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5585
                (ns name,'::',nm) asSymbolIfInterned notNil ifTrue:[ alternatives add: (ns name,'::',nm) asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5586
                nm asSymbolIfInterned notNil ifTrue:[ alternatives add: nm asSymbol ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5587
                globalVariablesUsed add:alternatives
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5588
            ].
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5589
        ]
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5590
    ].
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5591
10546
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5592
    "/ sorry: 
174df6f8a170 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 10416
diff changeset
  5593
    "/      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
  5594
    "/      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
  5595
    "/      them, to avoid parsing.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5596
    usedSymbols := searchTree usedSymbols.
28e46bad9ca9 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12040
diff changeset
  5597
    usedStrings := searchTree usedLiterals select:[:lit | lit isString].
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5598
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5599
    searcher := ParseTreeSearcher new.
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5600
    isMethod ifTrue:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5601
        searcher 
8281
67f0cd20adf0 method-code search tuned: filter by number of methodArgs, if known.
Claus Gittinger <cg@exept.de>
parents: 8158
diff changeset
  5602
            matchesMethod:aCodeString
5256
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5603
            do:[:aNode :answer | foundMatch := true].
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5604
    ] ifFalse:[
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5605
        searcher 
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5606
            matchesTree:searchTree
c37bc91f2460 better none-found behavior for unary messages
Claus Gittinger <cg@exept.de>
parents: 5254
diff changeset
  5607
            do:[:aNode :answer | foundMatch := true].
6303
47c12063b000 Fix BC-Compile error
Stefan Vogel <sv@exept.de>
parents: 6184
diff changeset
  5608
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  5609
    searcher computeQuickSearchStrings.
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5610
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5611
    searchBlock := 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5612
        [:c :m :sel | 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5613
            |isSTCCompiled allSelectorsInLiteralArray allMessagesSent 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5614
             allGlobalsReferenced allUsedSymbolsInLiteralArray allStringsInLiteralArray
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5615
             allSent src rslt parseTree
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5616
             literalsInMethod|       
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5617
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5618
            foundMatch := false.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5619
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5620
            "/ 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
  5621
            (isMethod not 
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5622
            or:[ numMethodArgs isNil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5623
            or:[ numMethodArgs == m numArgs ]]) ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5624
                m isLazyMethod ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5625
                    src := m source.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5626
                    src notNil ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5627
                        m makeRealMethod.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5628
                    ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5629
                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5630
                "/ can speedup the search, by quickly filtering for sent messages...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5631
                literalsInMethod := m literals.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5632
                allSelectorsInLiteralArray := sentMessages isEmptyOrNil or:[ literalsInMethod includesAll:sentMessages ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5633
                allSelectorsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5634
                    "/ and used symbols/globals first...
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5635
                    allUsedSymbolsInLiteralArray := usedSymbols isEmptyOrNil or:[ literalsInMethod includesAll:usedSymbols ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5636
                    allUsedSymbolsInLiteralArray ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5637
                        "/ 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
  5638
                        "/ 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
  5639
                        isSTCCompiled := m byteCode isNil.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5640
                        isSTCCompiled ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5641
                            allStringsInLiteralArray := true.   "/ stc-compiled: don't know    
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5642
                        ] ifFalse:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5643
                            allStringsInLiteralArray := usedStrings isEmptyOrNil
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5644
                                                        or:[ literalsInMethod includesAll:usedStrings "literalsInMethod contains:[:lit | lit isString]" ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5645
                        ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5646
                        allStringsInLiteralArray ifTrue:[
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5647
                            allGlobalsReferenced := globalVariablesUsed conform:[:varNames | varNames contains:[:varName | m referencesGlobal:varName]].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5648
                            allGlobalsReferenced ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5649
                                allMessagesSent := sentMessages isEmptyOrNil 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5650
                                                   or:[ m messagesSent includesAll:sentMessages ].
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5651
                                allMessagesSent ifTrue:[
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5652
                                    src := m source.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5653
                                    src isNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5654
                                        ('Browser [info]: no source for ' , m printString) infoPrintCR.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5655
                                    ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5656
                                        isSTCCompiled ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5657
                                            usedStrings notEmptyOrNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5658
                                                "/ 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
  5659
                                                "/ before doing a slow parse
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5660
                                                allStringsInLiteralArray := usedStrings conform:[:eachString | src includesString:eachString].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5661
                                            ]
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5662
                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5663
                                        allStringsInLiteralArray ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5664
                                            (searcher canQuicklyReject:src) ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5665
                                                "/ Transcript show:'qReject: '; showCR:m whoString.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5666
                                            ] ifFalse:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5667
                                                "/ the rest is done by the slower RB-match process...
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5668
                                                parseTree := 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5669
                                                    RBParser 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5670
                                                        parseSearchMethod:src 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5671
                                                        onError: [:str :pos | 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5672
                                                            "/ self halt.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5673
                                                            Transcript show:'Error during search in '; showCR:m. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5674
                                                            Transcript showCR:str. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5675
                                                            Transcript showCR:pos. 
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5676
                                                            nil
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5677
                                                        ].
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5678
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5679
                                                parseTree notNil ifTrue:[
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5680
                                                    searcher executeTree:parseTree.
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5681
                                                    "/ notice: searcher sets foundMatch !!
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5682
                                                ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5683
                                            ].
16600
2c71384ebdc4 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16597
diff changeset
  5684
                                        ].
5251
847d633792ce tuned code search if global vars are involved
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
  5685
                                    ]
5135
d844ec803124 improved code search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5686
                                ]
6581
ae69dc905971 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6560
diff changeset
  5687
                            ]
16597
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5688
                        ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5689
                    ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5690
                ]
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5691
            ].
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5692
            foundMatch.
fb8d01e7020f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16586
diff changeset
  5693
       ].
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5694
    ^ searchBlock.
7395
4aa4c6b9a161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7361
diff changeset
  5695
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5696
    "Created: / 02-05-2011 / 13:25:01 / sr"
11638
344d7d06f1d2 changed: #searchBlockForCode:in:isMethod:
Claus Gittinger <cg@exept.de>
parents: 11506
diff changeset
  5697
    "Modified: / 20-07-2012 / 19:07:36 / cg"
9879
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5698
!
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5699
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5700
searchBlockForCode:aCodeString isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5701
    "return a block to search for a piece of code (intelligent search)."
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5702
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5703
    ^ self searchBlockForCode:aCodeString in:#() isMethod:isMethod
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5704
5109d9da29eb added: #searchBlockForCode:in:isMethod:
sr
parents: 9685
diff changeset
  5705
    "Modified: / 02-05-2011 / 13:26:18 / sr"
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5706
!
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5707
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5708
searchBlockForParseTreeSearcher:searcher isMethod:isMethod
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5709
    "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
  5710
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5711
    |errAction searchBlock foundMatch|
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5712
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5713
    errAction := [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5714
                    Dialog warn:'Error during parse: ' , str , ' (position ' , pos printString , ')'.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5715
                    ^ nil
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5716
                 ].
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
    searchBlock := [:c :m :sel | 
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5719
                        |src parseTree|       
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5720
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5721
                        foundMatch := false.
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
                        m isLazyMethod ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5724
                            src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5725
                            src notNil ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5726
                                m makeRealMethod.
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
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5729
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5730
                        src := m source.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5731
                        src isNil ifTrue:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5732
                            ('Browser [info]: no source for ' , m printString) infoPrintCR.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5733
                        ] ifFalse:[
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5734
                            parseTree := RBParser 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5735
                                            parseSearchMethod:src 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5736
                                            onError: [:str :pos | 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5737
                                                Transcript show:'Error in '; showCR:m. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5738
                                                Transcript showCR:str. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5739
                                                Transcript showCR:pos. 
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5740
                                                nil].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5741
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5742
                            parseTree notNil ifTrue:[
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5743
                                foundMatch := searcher executeTree:parseTree initialAnswer:false.
9482
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5744
                            ]
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5745
                        ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5746
                        foundMatch.
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5747
                   ].
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5748
542a208d6273 added:7 methods
Claus Gittinger <cg@exept.de>
parents: 9334
diff changeset
  5749
    ^ searchBlock.
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
    "Created: / 11-05-2010 / 16:14:25 / cg"
9483
eead021c9729 changed: #searchBlockForParseTreeSearcher:isMethod:
Claus Gittinger <cg@exept.de>
parents: 9482
diff changeset
  5752
    "Modified: / 11-05-2010 / 22:05:09 / cg"
9482
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
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5755
searchBlockForReferendsOf:aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5756
    "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
  5757
     which may be a matchpattern.
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5758
     If aGlobalName is inside a namespace (a private or namespace-global),
65b7e94f77a7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17775
diff changeset
  5759
     the name should be <namespace>::<aGlobalName>"
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5760
12844
2a189ba77e75 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12837
diff changeset
  5761
    |globalsPlainName idx sym1 sym2|
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5762
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5763
    globalsPlainName := aGlobalName.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5764
    (idx := globalsPlainName lastIndexOf:$:) ~~ 0 ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5765
        globalsPlainName := globalsPlainName copyFrom:idx+1.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5766
        (globalsPlainName size == 0 or:[globalsPlainName = '*']) ifTrue:[
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5767
            globalsPlainName := aGlobalName
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5768
        ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5769
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5770
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5771
    "/ matchingGlobalNames := OrderedCollection new.
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5772
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5773
    aGlobalName includesMatchCharacters ifFalse:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5774
        sym1 := aGlobalName asSymbolIfInterned. 
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5775
        sym2 := globalsPlainName asSymbolIfInterned.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5776
        (sym1 isNil and:[ sym2 isNil ]) ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5777
            ^ [:cls :mthd :sel | false ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5778
        ].
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5779
        "/ if any is nil, search for the same
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5780
        sym1 := sym1 ? sym2.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5781
        sym2 := sym2 ? sym1.
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5782
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5783
        ^ [:cls :mthd :sel |
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5784
            |mSource ok m usedGlobals|
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5785
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5786
            ok := false.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5787
            "/ kludge: Lazy methods do not include symbols in the literal array - sigh
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5788
            mthd isLazyMethod ifTrue:[
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5789
                mSource := mthd source.
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5790
                (mSource notNil) ifTrue:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5791
                    (mSource includesString:(sym2)) ifTrue:[
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5792
                        usedGlobals := mthd usedGlobals.
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5793
                        (usedGlobals includes:sym1) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5794
                            ok := true
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5795
                        ] ifFalse:[
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5796
                            (sym1 ~= sym2 and:[usedGlobals includes:sym2]) ifTrue:[
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5797
                                ok := true
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5798
                            ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5799
                        ]
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5800
                    ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5801
                ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5802
            ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  5803
                m := mthd originalMethodIfWrapped.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5804
                ((m refersToLiteral:sym1) or:[ sym1 ~= sym2 and:[m refersToLiteral:sym2] ]) ifTrue:[
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5805
                    usedGlobals := m usedGlobals.
11964
8670bf08f225 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 11941
diff changeset
  5806
                    ok := (usedGlobals includes:sym1) or:[ sym1 ~= sym2 and:[usedGlobals includes:sym2] ]
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5807
                ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5808
            ].
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5809
            ok
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5810
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5811
    ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5812
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5813
    ^ [:cls :mthd :sel | 
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5814
        |mSource usedGlobals global m|
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
        "/ kludge: Lazy methods do not include symbols in the literal array - sigh
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5817
        mthd isLazyMethod ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5818
            mSource := mthd source.
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5819
            mSource notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5820
                usedGlobals := mthd usedGlobals
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5821
            ]
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5822
        ] ifFalse:[
13071
33d05d455513 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13046
diff changeset
  5823
            m := mthd originalMethodIfWrapped.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5824
            (m literals contains:[:lit | (aGlobalName match:lit) or:[globalsPlainName match:lit]]) ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5825
                usedGlobals := m usedGlobals
9002
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
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5828
        usedGlobals notNil ifTrue:[
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5829
            global := usedGlobals detect:[:lit | aGlobalName match:lit] ifNone:nil.
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5830
            global isNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5831
                global := usedGlobals detect:[:lit | globalsPlainName match:lit] ifNone:nil.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5832
            ].
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5833
"/            global notNil ifTrue:[
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5834
"/                matchingGlobalNames add:global.
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5835
"/            ]
9002
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5836
        ].
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5837
        global notNil
885404958f53 code cleanup
Claus Gittinger <cg@exept.de>
parents: 8894
diff changeset
  5838
    ].
9660
e8b452501452 changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 9578
diff changeset
  5839
10386
105f6c60ce2d changed: #searchBlockForReferendsOf:
Claus Gittinger <cg@exept.de>
parents: 10346
diff changeset
  5840
    "Modified: / 24-07-2011 / 09:50:30 / cg"
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
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5843
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg
5094
242cf19c25ce code search
Claus Gittinger <cg@exept.de>
parents: 5090
diff changeset
  5844
    "return a block to search for a string."
4235
bba308f409dd images & another special case startup
Claus Gittinger <cg@exept.de>
parents: 4222
diff changeset
  5845
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5846
    ^ self 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5847
        searchBlockForString:aString 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5848
        ignoreCase:ignoreCase 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5849
        match:doMatchArg 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5850
        fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5851
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5852
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5853
     SystemBrowser 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5854
        findString:'should'   
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5855
        in:(Array with:Object) 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5856
        ignoreCase:false
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
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5859
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5860
searchBlockForString:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5861
    "return a block to search for a string."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5862
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5863
    |checkBlock lineCheckBlock pattern doMatch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5864
     quickCheckString firstMatchIndex lastMatchIndex|
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5865
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5866
    doMatch := doMatchArg.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5867
    aString includesMatchCharacters ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5868
        doMatch := false.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5869
    ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5870
    doMatch ifTrue:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5871
        "a matchString"
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5872
        pattern := aString.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5873
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5874
        firstMatchIndex := aString indexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5875
        lastMatchIndex := aString lastIndexOfAny:'*#['.
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5876
        "/ which is longer - left or right part
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5877
        firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5878
            "/ use left part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5879
            quickCheckString := aString copyTo:firstMatchIndex-1
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5880
        ] ifFalse:[
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5881
            "/ use right part as quickSearch
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5882
            quickCheckString := aString copyFrom:lastMatchIndex+1            
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5883
        ].    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5884
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5885
        aString first == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5886
            pattern := '*',pattern
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5887
        ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5888
        aString last == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5889
            pattern := pattern,'*'
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5890
        ].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5891
        "/ 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
  5892
        lineCheckBlock := [:line | pattern match:line caseSensitive:ignoreCase not].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5893
        quickCheckString size > 1 ifTrue:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5894
            checkBlock := [:src | 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5895
                            (src includesString:quickCheckString caseSensitive:ignoreCase not)
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5896
                            and:[ (lineCheckBlock value:src)
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5897
                            and:[ src asStringCollection contains:lineCheckBlock ]]].
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5898
        ] ifFalse:[    
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5899
            checkBlock := [:src | 
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5900
                            (lineCheckBlock value:src)
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5901
                            and:[ src asStringCollection contains:lineCheckBlock ]].
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5902
        ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5903
    ] ifFalse:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5904
        checkBlock := [:src | src includesString:aString caseSensitive:ignoreCase not]
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5905
    ].
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5906
    
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5907
    ^ [:cls :mthd :sel | 
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5908
        |src found idx1 reallyFound ch1 ch2|
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5909
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5910
        found := false.
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5911
        src := mthd source.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5912
        src isNil ifTrue:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5913
            ('Browser [info]: no source for ' , mthd printString) infoPrintCR.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5914
        ] ifFalse:[
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5915
            found := checkBlock value:src.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5916
            (fullWordsOnly and:[found]) ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5917
                self halt.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5918
                doMatch ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5919
                    
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5920
                ] ifFalse:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5921
                    reallyFound := false.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5922
                    idx1 := 0.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5923
                    [ 
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5924
                        reallyFound not
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5925
                        and:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5926
                            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
  5927
                            idx1 ~~ 0]
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5928
                    ] whileTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5929
                        "/ see if it is a free-standing word
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5930
                        reallyFound := true.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5931
                        idx1 > 1 ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5932
                            ch1 := src at:idx1-1.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5933
                            (ch1 isLetter or:[ch1 == $_]) ifTrue:[ reallyFound := false].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5934
                        ].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5935
                        (idx1+aString size-1) < src size ifTrue:[
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5936
                            ch2 := src at:idx1+aString size.
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5937
                            (ch2 isLetter or:[ch2 == $_]) ifTrue:[ reallyFound := false].
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5938
                        ].
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
                    found := reallyFound
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5941
                ].                
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5942
            ].                
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
        found
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5945
      ]
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5946
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5947
    "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5948
     SystemBrowser findString:'should'   in:(Array with:Object) ignoreCase:false
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  5949
    "
4152
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5950
!
92e3975f1904 allow for non-matching search (searching for impl. of '*')
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  5951
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5952
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5953
    "return a block to search for a string-literal."
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5954
16691
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5955
    ^ self
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5956
        searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5957
        fullWordsOnly:false
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5958
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5959
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5960
     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
  5961
     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
  5962
     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
  5963
     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
  5964
    "
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5965
!
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5966
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5967
searchBlockForStringLiteral:aString ignoreCase:ignoreCase match:doMatchArg fullWordsOnly:fullWordsOnly
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5968
    "return a block to search for a string-literal."
9998797358f3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16600
diff changeset
  5969
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5970
    |pattern doMatch checkLiteral checkSource 
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5971
     quickCheckString firstMatchIndex lastMatchIndex|
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5972
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5973
    aString isEmpty ifTrue:[^ [:cls :mthd :sel | true ]].
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5974
    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5975
    doMatch := doMatchArg.
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5976
    (aString includesMatchCharacters) ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5977
        doMatch := false
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5978
    ].
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5979
    doMatch ifTrue:[
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  5980
        "a matchString"
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5981
        pattern := aString.    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5982
        aString first == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5983
            pattern := '*',pattern
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5984
        ].    
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5985
        aString last == $* ifFalse:[
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5986
            pattern := pattern,'*'
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  5987
        ].
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5988
        checkLiteral := [:lit | pattern match:lit caseSensitive:ignoreCase not].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5989
        firstMatchIndex := aString indexOfAny:'*#['.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5990
        lastMatchIndex := aString lastIndexOfAny:'*#['.
16468
3df3e4d3ea9d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16462
diff changeset
  5991
        "/ which is longer - left or right part?
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5992
        firstMatchIndex-1 "nleft" > (aString size-lastMatchIndex) "nright" ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5993
            "/ use left part as quickSearch
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5994
            quickCheckString := aString copyTo:firstMatchIndex-1
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5995
        ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5996
            "/ use right part as quickSearch
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5997
            quickCheckString := aString copyFrom:lastMatchIndex+1            
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5998
        ].    
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  5999
        quickCheckString size > 1 ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6000
            checkSource := [:src | src includesString:quickCheckString caseSensitive:ignoreCase not]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6001
        ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6002
            checkSource := [:src | true]. "/ not worth the effort
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6003
        ].    
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6004
    ] ifFalse:[
5891
2a0c77668f34 findString caseless fixed
Claus Gittinger <cg@exept.de>
parents: 5877
diff changeset
  6005
        ignoreCase ifTrue:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6006
            checkLiteral := [:lit | lit includesString:aString caseSensitive:true].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6007
            checkSource := [:src | src includesString:aString caseSensitive:true].
5891
2a0c77668f34 findString caseless fixed
Claus Gittinger <cg@exept.de>
parents: 5877
diff changeset
  6008
        ] ifFalse:[
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6009
            checkLiteral := [:lit | lit includesString:aString].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6010
            checkSource := [:src | src includesString:aString].
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6011
        ].    
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6012
    ].
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6013
        
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6014
    ^ [:cls :methodArg :sel | 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6015
        "/ 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
  6016
        "/ into the literals.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6017
        "/        (mthd literalsDetect:[:lit |
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6018
        "/            lit isString
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6019
        "/            and:[ lit isSymbol not
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6020
        "/            and:[ checkLiteral value:lit ]]
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6021
        "/        ] ifNone:[nil]) 
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6022
        "/            notNil
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6023
        "/ so we must parse here (sigh)
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6024
        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6025
        |method src skip tree found|
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6026
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6027
        skip := found := false.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6028
        method := methodArg originalMethodIfWrapped.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6029
        method isLazyMethod ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6030
            src := method source.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6031
            (src notNil) ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6032
                method makeRealMethod.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6033
            ] ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6034
                skip := true
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6035
            ].    
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6036
        ].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6037
        skip ifFalse:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6038
            src := method source.
17056
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6039
            src isNil ifTrue:[
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6040
                ('SystemBrowser: [warning]: no source for method: ',methodArg printString) errorPrintCR.
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6041
            ].    
20e4c1abbbcf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  6042
            (src notNil and:[src includes:$']) ifTrue:[ "/ eliminates many
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6043
                (checkSource value:src) ifTrue:[
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6044
                    tree := cls parseTreeFor:sel.
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6045
                    "/ walk
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6046
                    found :=
17498
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6047
                        tree notNil 
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6048
                        and:[tree usedLiterals contains:[:lit |
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6049
                                lit isString
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6050
                                and:[ lit isSymbol not
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6051
                                and:[ checkLiteral value:lit ]]]]
16462
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6052
                ].        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6053
            ].        
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6054
        ].
b6190d4c7f4c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 16451
diff changeset
  6055
        found
16451
50d4e491a50e #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16449
diff changeset
  6056
      ]
5877
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6057
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6058
    "
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6059
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6060
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:true match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6061
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:true
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6062
     SystemBrowser findStringLiteral:'error' in:(Array with:Object) ignoreCase:false match:false
c11a6d244c6a string literal search
Claus Gittinger <cg@exept.de>
parents: 5833
diff changeset
  6063
    "
17498
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6064
b5901ab82661 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 17466
diff changeset
  6065
    "Modified: / 20-04-2017 / 11:28:05 / stefan"
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6066
!
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6067
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6068
searchBlockForSymbol:aSymbol 
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6069
    "return a matchblock to search for all methods referencing aSymbol.
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6070
     false if no such symbol exists"
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
    (aSymbol includesMatchCharacters) ifTrue:[
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6073
        "a matchString"
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6074
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6075
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6076
                        (aLiteral isMemberOf:Symbol) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6077
                        and:[aSymbol match:aLiteral]
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6078
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6079
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6080
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6081
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6082
    ] ifFalse:[
12866
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6083
        aSymbol asSymbolIfInterned isNil ifTrue:[
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6084
            ^ false
dfc55f180f52 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12844
diff changeset
  6085
        ].
11452
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6086
        ^ [:c :m :s |
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6087
                (m literalsDetect:[:aLiteral|
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6088
                    (aSymbol == aLiteral) 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6089
                    ] 
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6090
                    ifNone:nil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6091
                ) notNil
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6092
           ].
09f7f34c2d10 code cleanup
Claus Gittinger <cg@exept.de>
parents: 11291
diff changeset
  6093
    ].
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
    "Created: / 22-03-2012 / 06:56:51 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6096
! !
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6097
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6098
!SystemBrowser class methodsFor:'startup'!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6099
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6100
browseAllSelect:aBlock
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6101
    "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
  6102
     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
  6103
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6104
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6105
        browseMethodsWhere:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6106
        title:'selected messages'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6107
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6108
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6109
     SystemBrowser browseAllSelect:[:aClass :aMethod :selector | selector numArgs == 3]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6110
    "
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6111
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6112
    "Modified: 24.1.1997 / 19:45:05 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6113
!
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6114
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6115
browseClass:aClass
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6116
    "launch a browser for aClass.
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6117
     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
  6118
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6119
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6120
        newWithLabel:aClass name
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6121
        setupSelector:#setupForClass:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6122
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6123
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6124
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6125
     SystemBrowser browseClass:Object
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6126
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6127
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6128
    "Modified: 24.1.1997 / 19:45:16 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6129
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6130
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6131
browseClass:aClass methodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6132
    "launch a browser for all methods under aCategory in aClass"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6133
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6134
    ^ self newWithLabel:(aClass name , ' ' , aCategory)
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6135
          setupBlock:[:browser | browser setupForClass:aClass methodCategory:aCategory]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6136
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6137
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6138
     SystemBrowser browseClass:String methodCategory:'copying'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6139
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6140
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6141
    "Modified: 24.1.1997 / 19:45:23 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6142
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6143
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6144
browseClass:aClass selector:selector
4490
de7216d4a28a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  6145
    "launch a browser for the method at selector in aClass."
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6146
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6147
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6148
        newWithLabel:(aClass name , ' ' , selector , ' ' , selector)
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6149
        setupBlock:[:newBrowser | newBrowser setupForClass:aClass selector:selector]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6150
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
     SystemBrowser browseClass:Object selector:#printString
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6153
     Tools::NewSystemBrowser openInClass:Object selector:#printString
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6154
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6155
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6156
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6157
browseClassCategory:aClassCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6158
    "launch a browser for all classes under aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6159
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6160
    ^ self 
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6161
        newWithLabel:aClassCategory
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6162
        setupSelector:#setupForClassCategory:
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6163
        arg:aClassCategory
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6164
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6165
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6166
     SystemBrowser browseClassCategory:'Kernel-Objects'
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6167
    "
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6168
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6169
    "Modified: 24.1.1997 / 19:45:32 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6170
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6171
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6172
browseClassHierarchy:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6173
    "launch a browser for aClass and all its superclasses.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6174
     this is different from the fullProtocol browser."
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6175
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6176
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6177
        newWithLabel:(aClass name , '-' , 'hierarchy')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6178
        setupSelector:#setupForClassHierarchy:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6179
        arg:aClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6180
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6181
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6182
     SystemBrowser browseClassHierarchy:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6183
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6184
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6185
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6186
browseClasses:aList label:title
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6187
    "launch a browser for all classes in aList"
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
    ^ self 
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6190
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6191
        setupBlock:[:b | b setupForClassList:aList sort:true]
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6192
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
     SystemBrowser browseClasses:(Array with:Object
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6195
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6196
                           title:'two classes'
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6197
    "
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6198
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6199
    "Modified: 28.5.1996 / 13:52:25 / cg"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6200
!
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6201
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6202
browseClasses:aList label:title sort:doSort
576
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6203
    "launch a browser for all classes in aList"
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6204
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6205
    ^ self 
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6206
        newWithLabel:title
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6207
        setupBlock:[:b | b setupForClassList:aList sort:doSort]
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6208
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
     SystemBrowser browseClasses:(Array with:Object
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6211
                                        with:Float)
62dc6c67d71c show subclasses hierarchical (spawn subclasses)
Claus Gittinger <cg@exept.de>
parents: 573
diff changeset
  6212
                           title:'two classes'
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
    "Created: 28.5.1996 / 13:52:09 / cg"
52
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6216
!
7b48409ae088 *** empty log message ***
claus
parents: 49
diff changeset
  6217
8702
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6218
browseClasses:aList title:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6219
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6220
    "launch a browser for all classes in aList"
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6221
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6222
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6223
    ^ self browseClasses:aList label:title
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6224
!
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6225
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6226
browseClasses:aList title:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6227
    <resource: #obsolete>
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6228
    "launch a browser for all classes in aList"
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
    self obsoleteMethodWarning.
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6231
    ^ self browseClasses:aList label:title sort:doSort
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6232
93616c89ade0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8688
diff changeset
  6233
    "Created: 28.5.1996 / 13:52:09 / cg"
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
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6236
browseFullClassProtocol:aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6237
    "launch a browser for aClasses full protocol.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6238
     This is different from hierarchy browsing."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6239
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6240
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6241
        newWithLabel:(aClass name , '-' , 'full protocol')
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6242
        setupSelector:#setupForFullClassProtocol:
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6243
        arg:aClass
203
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
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6246
     SystemBrowser browseFullClassProtocol:Number
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6247
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6248
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6249
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6250
browseFullClasses
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6251
    "launch a browser showing all methods at once"
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
    ^ self 
4158
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6254
        newWithLabel:'Full Class Browser'
d7286d54de21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  6255
        setupBlock:[:newBrowser | newBrowser setupForFullClass]
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6256
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6257
    "SystemBrowser browseFullClasses"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6258
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6259
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6260
browseInstMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6261
    "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
  6262
     where aBlock evaluates to true"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6263
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6264
    ^ self      
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6265
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6266
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6267
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6268
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6269
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6270
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6271
    "Modified: 24.1.1997 / 19:44:45 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6272
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6273
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6274
browseInstMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6275
    "launch a browser for all instance methods of all classes in
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6276
     aCollectionOfClasses where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6277
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6278
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6279
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6280
        inst:true class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6281
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6282
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6283
    "Modified: 24.1.1997 / 19:43:41 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6284
!
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6285
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6286
browseInstMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6287
    "launch a browser for all instance methods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6288
     where aBlock evaluates to true"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6289
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6290
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6291
        browseMethodsIn:(Array with:aClass) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6292
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6293
        class:false 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6294
        where:aBlock title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6295
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6296
    "Modified: 24.1.1997 / 19:43:50 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6297
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6298
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6299
browseMethod:aMethod
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6300
    "launch a single-method browser."
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6301
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6302
    ^ self browseMethods:{ aMethod }
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6303
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6304
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6305
     self browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6306
     Tools::NewSystemBrowser browseMethod:(Array compiledMethodAt:#at:)
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6307
    "
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
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6310
browseMethodCategory:aCategory
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6311
    "launch a browser for all methods where category = aCategory"
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6312
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6313
    |searchBlock|
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6314
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6315
    aCategory includesMatchCharacters ifTrue:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6316
        searchBlock := [:c :m :s | aCategory match:m category].
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6317
    ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6318
        searchBlock := [:c :m :s | m category = aCategory]
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6319
    ].
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6320
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6321
    ^ self browseMethodsWhere:searchBlock title:('all methods with category of ' , aCategory)
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6322
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6323
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6324
     SystemBrowser browseMethodCategory:'printing & storing'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6325
     SystemBrowser browseMethodCategory:'print*'
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6326
    "
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
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6329
browseMethods:aListOfMethods
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6330
    "launch a multi-method browser."
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6331
16384
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6332
    |title|
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6333
    
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6334
    aListOfMethods size == 1 ifTrue:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6335
        title := aListOfMethods first whoString
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6336
    ] ifFalse:[
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6337
        title := 'some methods'
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
    ^ self browseMethods:aListOfMethods title:title
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6340
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6341
    "
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6342
     self 
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6343
        browseMethods:(Array with:(Array compiledMethodAt:#at:))
c8ad46b886c6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16337
diff changeset
  6344
3666
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6345
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6346
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6347
                             with:(OrderedCollection compiledMethodAt:#at:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6348
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6349
     self 
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6350
        browseMethods:(Array with:(Array compiledMethodAt:#at:)
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6351
                             with:(Array compiledMethodAt:#at:put:))
f7b25e677c23 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3663
diff changeset
  6352
    "
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
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6355
browseMethods:aList title:aString
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6356
    "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
  6357
     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
  6358
     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
  6359
     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
  6360
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6361
    ^ self
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6362
        browseMethods:aList
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6363
        title:aString
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6364
        sort:true
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6365
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6366
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6367
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6368
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6369
        browseMethods:#('Object printOn:' 'Collection add:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6370
        title:'some methods'
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
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6373
        browseMethods:#('Behavior new:' 'Setclass new:')
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6374
        title:'some new: methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6375
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6376
     SystemBrowser 
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6377
        browseMethods:(Array with:(Object compiledMethodAt:#printOn:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6378
                             with:(Collection compiledMethodAt:#add:)
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6379
                             with:(Object class compiledMethodAt:#initialize))
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6380
        title:'some methods'
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6381
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6382
    "
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6383
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6384
    "Modified: 1.11.1996 / 16:30:17 / cg"
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6385
!
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
browseMethods:aList title:aString sort:doSort
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6388
    "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
  6389
     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
  6390
     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
  6391
     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
  6392
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6393
    |l|
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6394
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6395
    (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
  6396
        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
  6397
        ^ nil
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6398
    ].
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6399
    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
  6400
    l := l collect:[:entry |
15513
bbe70d563ae2 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15499
diff changeset
  6401
        |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
  6402
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6403
        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
  6404
            entry
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6405
        ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6406
            cls := entry mclass.
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6407
            cls isNil ifTrue:[
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6408
                '??? unbound'
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6409
            ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6410
                cls isJavaClass ifTrue:[
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6411
                    clsName := 'JAVA::' , cls fullName 
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6412
                ] ifFalse:[
2822
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6413
                    clsName := cls name
8127e7726fdd changes for environment browsing
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6414
                ].
7915
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6415
                (cls selectorAtMethod:entry) isNil ifTrue:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6416
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6417
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6418
                    , '???' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6419
                ] ifFalse:[
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6420
                    clsName
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6421
                    , ' ' 
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6422
                    , (entry printStringForBrowserWithSelector:(cls selectorAtMethod:entry) inClass:cls)
56a43b103eaa refactoring
Claus Gittinger <cg@exept.de>
parents: 7914
diff changeset
  6423
                ]
1031
5d77c99b877e dont crash when unbound methods are passed
ca
parents: 1018
diff changeset
  6424
            ]
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6425
        ]
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6426
      ].
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6427
        
1919
0652e55065f9 added sort option to #browserMethods:
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  6428
    doSort ifTrue:[l sort].
1937
fc541342f2db more support for java code (implementors)
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
  6429
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6430
    ^ 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
  6431
        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
  6432
        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
  6433
        arg:l 
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6434
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6435
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6436
     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
  6437
        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
  6438
        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
  6439
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6440
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6441
        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
  6442
        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
  6443
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6444
     SystemBrowser 
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6445
        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
  6446
                             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
  6447
                             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
  6448
        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
  6449
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6450
    "
279
062022b53f22 allow browseMethods to be passed a collection of methodObjects (in addition to strings)
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
  6451
7711
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6452
    "Modified: / 17-06-1996 / 17:07:46 / stefan"
7e8881bccf72 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7524
diff changeset
  6453
    "Modified: / 05-03-2007 / 16:25:25 / cg"
2826
9d7f11697806 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  6454
!
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6455
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6456
browseMethodsFrom:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6457
    "launch a browser for all instance- and classmethods in aClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6458
     and all its subclasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6459
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6460
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6461
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6462
        browseMethodsIn:(aClass withAllSubclasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6463
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6464
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6465
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6466
    "Modified: 24.1.1997 / 19:44:00 / cg"
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6467
!
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6468
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6469
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6470
    "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
  6471
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6472
     where aBlock evaluates to true.
270
f97a37f5df7a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
  6473
     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
  6474
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6475
    |list|
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6476
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6477
    "
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6478
     since this may take a long time, lower my priority ...
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6479
    "
2295
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6480
    Processor activeProcess 
4e05198e7dd8 execute BG tasks at a prio range, to ensure progress.
Claus Gittinger <cg@exept.de>
parents: 2208
diff changeset
  6481
        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
  6482
    do:[
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6483
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6484
    ].
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6485
    ^ self browseMethods:list title:title
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6486
!
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6487
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6488
browseMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6489
    "launch a browser for all instance- (if wantInst is true) and/or
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6490
     classmethods (if wantClass is true) from classes in aCollectionOfClasses,
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6491
     where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6492
     The block is called with 3 arguments, class, method and selector."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6493
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6494
    |list|
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6495
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6496
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6497
     since this may take a long time, lower my priority ...
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6498
    "
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6499
    Processor activeProcess 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6500
        withPriority:Processor activePriority-1 to:Processor activePriority
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6501
    do:[
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6502
        list := self findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6503
        list size == 0 ifTrue:[warnBlock value].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6504
    ].
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6505
    ^ self browseMethods:list title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6506
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6507
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6508
browseMethodsIn:aCollectionOfClasses where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6509
    "launch a browser for all instance- and classmethods from 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6510
     all classes in aCollectionOfClasses where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6511
     The block is called with 3 arguments, class, method and seelctor."
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
  6512
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6513
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6514
        browseMethodsIn:aCollectionOfClasses 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6515
        inst:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6516
        class:true 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6517
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6518
        title:title
75
f6310cbc93b6 *** empty log message ***
claus
parents: 72
diff changeset
  6519
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6520
    "Modified: 24.1.1997 / 19:44:17 / cg"
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6521
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6522
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6523
browseMethodsIn:aCollectionOfClasses where:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6524
    "launch a browser for all instance- and classmethods from 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6525
     all classes in aCollectionOfClasses where aBlock evaluates to true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6526
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6527
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6528
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6529
        browseMethodsIn:aCollectionOfClasses 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6530
        inst:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6531
        class:true 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6532
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6533
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6534
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6535
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6536
    "Modified: 24.1.1997 / 19:44:17 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6537
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6538
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6539
browseMethodsOf:aClass where:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6540
    "launch a browser for all instance- and classmethods in aClass 
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6541
     where aBlock evaluates to true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6542
     The block is called with 3 arguments, class, method and seelctor."
93
claus
parents: 90
diff changeset
  6543
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6544
    ^ self browseMethodsIn:(Array with:aClass) where:aBlock title:title
93
claus
parents: 90
diff changeset
  6545
!
claus
parents: 90
diff changeset
  6546
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6547
browseMethodsWhere:aBlock title:title
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6548
    "launch a browser for all methods where aBlock returns true.
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6549
     The block is called with 3 arguments, class, method and seelctor."
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6550
996
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6551
    ^ self 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6552
        browseMethodsIn:(Smalltalk allClasses) 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6553
        where:aBlock 
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6554
        title:title
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6555
ed470d0b6029 more generic browseAll protocol;
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  6556
    "Modified: 24.1.1997 / 19:44:30 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6557
!
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6558
3780
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6559
browseMethodsWhere:aBlock title:title ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6560
    "launch a browser for all methods where aBlock returns true.
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6561
     The block is called with 3 arguments, class, method and seelctor."
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6562
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6563
    ^ self 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6564
        browseMethodsIn:(Smalltalk allClasses) 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6565
        where:aBlock 
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6566
        title:title
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6567
        ifNone:warnBlock
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6568
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6569
    "Modified: 24.1.1997 / 19:44:30 / cg"
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6570
!
39191b8024e4 dont open empty list browsers
penk
parents: 3679
diff changeset
  6571
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6572
findMethodsIn:aCollectionOfClasses inst:wantInst class:wantClass where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6573
    "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
  6574
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6575
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6576
    |list checkedClasses checkBlock nClasses 
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6577
     nClassesDone oldPercentage newPercentage nClassesSinceLastPercentage bulkSize|
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6578
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6579
    checkedClasses := IdentitySet new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6580
    list := OrderedCollection new.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6581
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6582
    checkBlock := [:cls |
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6583
        (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
  6584
            (cls isObsolete and:[cls isLoaded]) ifTrue:[
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6585
                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
  6586
            ] ifFalse:[
11941
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6587
                aBlock numArgs == 1 ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6588
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6589
                        (aBlock value:method) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6590
                            list add:method "/ (cls name , ' ' , sel)
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6591
                        ]
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6592
                    ].
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6593
                ] ifFalse:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6594
                    cls methodDictionary keysAndValuesDo:[:sel :method |
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6595
                        (aBlock value:cls value:method value:sel) ifTrue:[
55fec250ed02 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
  6596
                            list add:method "/ (cls name , ' ' , sel)
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
                    ].
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6599
                ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6600
                checkedClasses add:cls.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6601
            ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6602
        ]
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6603
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6604
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6605
    nClasses := aCollectionOfClasses size.
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6606
    nClassesDone := 0.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6607
    oldPercentage := 0.
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6608
    nClassesSinceLastPercentage := 0.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6609
    bulkSize := (nClasses // 30) max:10. "/ roughly every 3%.
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6610
    
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6611
    aCollectionOfClasses do:[:aClass |
3008
1a45c272b13f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2901
diff changeset
  6612
        (aClass notNil and:[aClass isObsolete not]) ifTrue:[
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6613
            nClassesSinceLastPercentage := nClassesSinceLastPercentage + 1.
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6614
            
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6615
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6616
             output disabled - it slows down things too much (when searching for
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6617
             implementors or senders)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6618
            "
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6619
            wantInst ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6620
"/                Transcript show:'searching '; show:aClass name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6621
                checkBlock value:aClass
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6622
            ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6623
            wantClass ifTrue:[
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6624
"/                Transcript show:'searching '; show:aClass class name; showCR:' ...'; endEntry.
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6625
                checkBlock value:(aClass class)
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6626
            ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6627
            nClassesSinceLastPercentage > bulkSize ifTrue:[
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6628
                "/ Processor yield
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6629
                newPercentage := nClassesDone * 100 // nClasses.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6630
                newPercentage ~= oldPercentage ifTrue:[
17440
930529441c39 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  6631
                    ProgressNotification progressPercentage:newPercentage statusInfo:('%1 found' bindWith:list size).
16238
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6632
                    oldPercentage := newPercentage.
64ea19197d95 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16037
diff changeset
  6633
                ].
16449
d4471f0310b6 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 16443
diff changeset
  6634
                nClassesSinceLastPercentage := 0.
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6635
            ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6636
        ].
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6637
        nClassesDone := nClassesDone + 1.
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6638
    ].
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6639
    ^ list
11506
bc0fc32fd733 changed: #findMethodsIn:inst:class:where:
Claus Gittinger <cg@exept.de>
parents: 11452
diff changeset
  6640
17466
93123277a442 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 17440
diff changeset
  6641
    "Modified: / 14-03-2017 / 12:05:57 / cg"
2675
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6642
!
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
findMethodsIn:aCollectionOfClasses where:aBlock
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6645
    "return all instance- and classmethods 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6646
     from classes in aCollectionOfClasses, where aBlock evaluates to true."
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
    ^ self
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6649
        findMethodsIn:aCollectionOfClasses 
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6650
        inst:true
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6651
        class:true      
9a1138c3fe76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
  6652
        where:aBlock
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6653
! !
93
claus
parents: 90
diff changeset
  6654
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  6655
!SystemBrowser class methodsFor:'startup with query'!
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6656
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6657
askThenBrowseClass
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6658
    self getClassThenPerform:#browseClass:
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6659
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6660
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6661
     SystemBrowser askThenBrowseClass
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6662
     Tools::NewSystemBrowser askThenBrowseClass
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6663
    "
93
claus
parents: 90
diff changeset
  6664
!
claus
parents: 90
diff changeset
  6665
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6666
askThenBrowseClassHierarchy
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6667
    self getClassThenPerform:#browseClassHierarchy:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6668
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6669
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6670
     SystemBrowser askThenBrowseClassHierarchy
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6671
     Tools::NewSystemBrowser askThenBrowseClassHierarchy
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6672
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6673
!
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6674
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6675
askThenBrowseFullClassProtocol
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6676
    self getClassThenPerform:#browseFullClassProtocol:
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6677
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6678
    "
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  6679
     SystemBrowser askThenBrowseFullClassProtocol
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6680
     Tools::NewSystemBrowser askThenBrowseFullClassProtocol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6681
    "
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6682
! !
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  6683
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6684
!SystemBrowser class methodsFor:'utilities'!
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  6685
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6686
askForClass
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6687
    ^ self askForClassWithFilter:nil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6688
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6689
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6690
     Tools::NewSystemBrowser askForClass   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6691
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6692
!
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
askForClassName
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6695
    ^ self askForClassNameWithFilter:nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6696
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6697
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6698
     Tools::NewSystemBrowser askForClassName   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6699
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6700
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6701
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6702
askForClassNameWithFilter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6703
    self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6704
        askForClassToSearch:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6705
        single:true
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6706
        msgTail:''
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6707
        resources:(self classResources)
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6708
        filter:filterOrNil
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6709
        forBrowser:nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6710
        thenDo:[:className :single :doWhat |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6711
            ^ className
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6712
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6713
    ^ nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6714
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6715
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6716
     Tools::NewSystemBrowser askForClassName   
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
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6719
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6720
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
  6721
    "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
  6722
     to search for a class in an existing browser.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6723
     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
  6724
     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
  6725
     Moved from instance protocol for better reusability."
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6726
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6727
    |box boxLabel title okText className canFind doWhat classNameHolder updateList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6728
     allClasses classNamesInChangeSet
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6729
     allNames allFullNames initialShortNames initialFullNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6730
     colorizedFullNames colorizedShortNames
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6731
     resources check showingWhatLabel showFullNameHolder genShortNameListEntry|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6732
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6733
    resources := resourcesOrNil ? self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6734
    showFullNameHolder := (LastClassSearchBoxShowedFullName ? false) asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6735
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6736
    doWhat := doWhatByDefault.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6737
    canFind := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6738
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6739
    title := ''.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6740
    boxLabel := (resources string:'Select a class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6741
    okText := 'OK'.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6742
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6743
    genShortNameListEntry :=
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6744
        [:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6745
            |ns|
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6746
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6747
            cls isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6748
                nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6749
            ] ifFalse:[
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6750
                (filterOrNil notNil and:[ (filterOrNil value:cls) not]) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6751
                    nil
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6752
                ] ifFalse:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6753
                    ns := cls topNameSpace name.
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6754
                    ns = 'Smalltalk'
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6755
                        ifTrue:[ ns := '' ]
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6756
                        ifFalse:[ns := ' (in ',ns,')'].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6757
                    cls nameWithoutNameSpacePrefix,ns
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6758
                ]
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6759
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6760
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6761
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6762
    classNamesInChangeSet := ChangeSet current changedClasses
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6763
                                select: (filterOrNil ? [:cls | true])
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6764
                                thenCollect:[:each | each theNonMetaclass name].
13028
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
    initialFullNames := self visitedClassNamesHistory.
13035
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6767
    (filterOrNil notNil) ifTrue:[
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6768
        initialFullNames := initialFullNames select:[:nm | filterOrNil value:(Smalltalk at:nm)].
7139f82575c0 class: NewLauncher
Claus Gittinger <cg@exept.de>
parents: 13032
diff changeset
  6769
    ].
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6770
    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
  6771
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6772
    colorizedFullNames := initialFullNames collect:[:clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6773
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6774
                                    clsName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6775
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6776
                                    clsName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6777
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6778
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6779
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6780
    colorizedShortNames := initialShortNames with:initialFullNames collect:[:shortName :clsName | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6781
                                (classNamesInChangeSet includes:clsName) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6782
                                    shortName asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6783
                                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6784
                                    shortName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6785
                                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6786
                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6787
13046
f3c72a68d92a title of class search box
Claus Gittinger <cg@exept.de>
parents: 13037
diff changeset
  6788
    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
  6789
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6790
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6791
                enterBoxForClassWithCodeSelectionTitle:title withCRs
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6792
                withList:(showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames])
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6793
                okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6794
                forBrowser:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6795
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6796
    box label:boxLabel.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6797
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6798
    allClasses := Smalltalk allClasses copyAsOrderedCollection.
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6799
    filterOrNil notNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6800
        allClasses := allClasses select: filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6801
    ].
13028
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
    allNames := (allClasses
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6804
                    collect:[:cls |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6805
                        |ns nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6806
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6807
                        ns := cls topNameSpace name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6808
                        ns = 'Smalltalk'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6809
                            ifTrue:[ ns := '' ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6810
                            ifFalse:[ns := ' (in ',ns,')'].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6811
                        cls isNameSpace ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6812
                            nm := cls nameWithoutNameSpacePrefix,ns,' (Namespace)'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6813
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6814
                            nm := cls nameWithoutNameSpacePrefix,ns
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6815
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6816
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6817
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
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
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
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6822
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6823
    allFullNames := (allClasses 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6824
                    collect:[:cls | 
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6825
                        |nm|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6826
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6827
                        nm := cls name.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6828
                        (classNamesInChangeSet includes:cls name) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6829
                            nm asText emphasisAllAdd:(UserPreferences current emphasisForChangedCode)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6830
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6831
                            nm
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6832
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6833
                    ]) sortWith:allClasses; yourself.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6834
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6835
    updateList := [
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6836
            |nameToSearch list namesStarting namesIncluding lcName nameList|
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
            (nameToSearch := classNameHolder value withoutSeparators) isEmpty ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6839
                showingWhatLabel label:(resources string:'Recently visited:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6840
                list := (showFullNameHolder value ifTrue:[colorizedFullNames] ifFalse:[colorizedShortNames]).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6841
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6842
                showingWhatLabel label:(resources string:'Matching classes:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6843
                nameList := showFullNameHolder value
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6844
                                ifTrue:[ allFullNames ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6845
                                ifFalse:[ allNames ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6846
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6847
                lcName := nameToSearch asLowercase.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6848
                (lcName includesString:'::') ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6849
                    list := OrderedCollection new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6850
                    allClasses doWithIndex:[:cls :idx |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6851
                        |isIncluded|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6852
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6853
                        (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6854
                            isIncluded := (lcName match:cls name asLowercase)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6855
                        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6856
                            isIncluded := (cls name includesString:lcName caseSensitive:false)
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
                        isIncluded ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6859
                            list add:(nameList at:idx)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6860
                        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6861
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6862
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6863
                    (nameToSearch includesMatchCharacters) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6864
                        list := nameList select:[:nm | lcName match:nm asLowercase]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6865
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6866
                        namesIncluding := nameList
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6867
                                            select:[:nm |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6868
                                                "/ nm asLowercase startsWith:lcName
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6869
                                                nm asLowercase includesString:lcName caseSensitive:false
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6870
                                            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6871
                        namesStarting := namesIncluding select:[:nm | nm asLowercase startsWith:lcName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6872
                        list := namesStarting , {nil} , (namesIncluding \ namesStarting).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6873
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6874
                ]
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
            box listView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6877
                list:list;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6878
                scrollToLine:((list findFirst:[:line | (line ? '') startsWith:lcName]) max:1)
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
    classNameHolder := '' asValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6882
    box enterField
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6883
        model:classNameHolder;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6884
        immediateAccept:true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6885
    classNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6886
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6887
    box entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6888
    box action:[:aString | className := aString].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6889
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6890
    box panelView
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6891
        addSubView:(showingWhatLabel := (Label label:(resources string:'Recently visited:')) adjust:#left) before:nil;
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6892
        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
  6893
    showFullNameHolder onChangeEvaluate:updateList.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6894
    box enterField origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6895
    box listView origin:(0 @ check corner y).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6896
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6897
    box extent:(400 @ 350).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6898
    box open.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6899
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6900
    className isEmptyOrNil ifTrue:[^ nil "cancel"].
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
    LastClassSearchBoxShowedFullName := showFullNameHolder value.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6903
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6904
    (className endsWith:$) ) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6905
        (className indexOfSubCollection:'(in ') == 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6906
            "/ a namespace
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6907
            className := (className copyTo:(className indexOfSubCollection:'(Name')-1) withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6908
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6909
            className := ((className copyFrom:(className indexOfSubCollection:'(in ')+4)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6910
                            copyButLast:1)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6911
                         , '::' , className asCollectionOfWords first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6912
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6913
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6914
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6915
    aBlock notNil ifTrue:[aBlock value:className optionalArgument:singleClass and:doWhat].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  6916
    ^ className
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
    "Modified: / 23-07-2012 / 11:00:22 / cg"
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
13032
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6921
askForClassWithFilter:filterOrNil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6922
    |className|
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6923
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6924
    className := self askForClassNameWithFilter:filterOrNil.
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6925
    className notEmptyOrNil ifTrue:[
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6926
        ^ Smalltalk classNamed:className
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6927
    ].
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6928
    ^ nil
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6929
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6930
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6931
     Tools::NewSystemBrowser askForClass   
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6932
    "
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6933
!
b0fd7b57ace5 +askForClassWithFilter:
Claus Gittinger <cg@exept.de>
parents: 13028
diff changeset
  6934
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6935
classWithNameSimilarTo:className
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6936
    "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
  6937
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6938
    |allMatchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6939
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6940
    allMatchingClasses := self classesWithNameSimilarTo:className.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6941
    ^ allMatchingClasses firstIfEmpty:nil
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6942
!
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6943
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6944
classesWithNameSimilarTo:className
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6945
    "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
  6946
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6947
    ^ self classesWithNameSimilarTo:className from:nil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6948
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6949
    "Modified: / 22-08-2006 / 13:22:41 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6950
!
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6951
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6952
classesWithNameSimilarTo:className from:aNameSpaceOrNil
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6953
    "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
  6954
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6955
    |nm lcName class allClasses triedDetectors triedMatchers allMatchingClasses
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6956
     prefNameSpaceOrNil prefLcNameSpace|
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6957
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6958
    prefNameSpaceOrNil := (aNameSpaceOrNil == Smalltalk) ifTrue:[ nil ] ifFalse:[aNameSpaceOrNil].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6959
12747
b59676921d61 refactored
Claus Gittinger <cg@exept.de>
parents: 12729
diff changeset
  6960
    nm := className withoutPrefix:'Smalltalk::'.
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6961
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6962
    prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6963
        class := prefNameSpaceOrNil at:nm asSymbol.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6964
        class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6965
        prefLcNameSpace := prefNameSpaceOrNil name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6966
    ].
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6967
    class := Smalltalk at:nm asSymbol.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6968
    class isBehavior ifTrue:[^ Array with:class].      "/ a direct hit
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6969
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6970
    lcName := className asLowercase.
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6971
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  6972
    allClasses := Smalltalk allClasses.
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6973
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6974
    triedDetectors := OrderedCollection new.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6975
    triedDetectors add:[:cls | cls name asLowercase = lcName].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6976
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6977
    triedDetectors do:[:eachTry |
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6978
        |class|
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6979
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6980
        class := allClasses detect:eachTry ifNone:nil.
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6981
        class notNil ifTrue:[^ Array with:class].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6982
    ].
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6983
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6984
    triedMatchers := OrderedCollection new.
5018
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  6985
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase = lcName].      
2fe02eac49c5 better classesWithNameSimilarTo
Claus Gittinger <cg@exept.de>
parents: 4924
diff changeset
  6986
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase = lcName].      
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6987
4806
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6988
    triedMatchers add:[:cls | cls name asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6989
    triedMatchers add:[:cls | cls nameWithoutNameSpacePrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6990
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase startsWith:lcName].      
439bed9def3a code cleanup
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6991
    triedMatchers add:[:cls | cls nameWithoutPrefix asLowercase includesString:lcName].      
6134
024fd528782a *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6115
diff changeset
  6992
    triedMatchers add:[:cls | cls name asLowercase includesString:lcName].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6993
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6994
    allMatchingClasses := IdentitySet new.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6995
    triedMatchers do:[:eachTry |
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6996
        |matchingClasses|
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6997
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  6998
        matchingClasses := allClasses select:eachTry.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  6999
"/        matchingClasses size == 1 ifTrue:[^ matchingClasses].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7000
        allMatchingClasses addAll:matchingClasses.
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7001
    ].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7002
    allMatchingClasses isEmpty ifTrue:[^ #()].
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7003
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7004
    allMatchingClasses := allMatchingClasses asOrderedCollection.
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7005
    allMatchingClasses 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7006
        sort:[:a :b | 
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7007
            |lcNameA lcNameB da db distA distB |
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7008
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7009
            lcNameA := a name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7010
            lcNameB := b name asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7011
            prefNameSpaceOrNil notNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7012
                a nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7013
                    lcNameA := a nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7014
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7015
                b nameSpace == prefNameSpaceOrNil ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7016
                    lcNameB := b nameWithoutNameSpacePrefix asLowercase.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7017
                ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7018
            ].
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
            distA := da := lcName levenshteinTo:lcNameA.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7021
            distB := db := lcName levenshteinTo:lcNameB.
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7022
            "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
  7023
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7024
            (lcNameA startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7025
                distB := distB * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7026
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7027
            (lcNameB startsWith:lcName) ifTrue:[
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7028
                distA := distA * 2
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7029
            ].
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7030
            distA < distB
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7031
        ].
4924
0d39bbc7203e better search-class heuristics
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  7032
    ^ allMatchingClasses.
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7033
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7034
    "
6678
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7035
     self classesWithNameSimilarTo:'NewSystemBrowser'
aa5572677e17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  7036
     self classesWithNameSimilarTo:'Moose::MSEAbstractOperator'
6546
1b809ef4658b comment
Stefan Vogel <sv@exept.de>
parents: 6480
diff changeset
  7037
    "
6944
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7038
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7039
    "Created: / 22-08-2006 / 13:22:48 / cg"
1cf67ff2795d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6925
diff changeset
  7040
    "Modified: / 22-08-2006 / 14:53:38 / cg"
3833
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7041
!
89b8454a783d refactored
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  7042
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7043
enterBoxForClassWithCodeSelectionTitle:title withList:listOrNil okText:okText forBrowser:aBrowserOrNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7044
    "convenient method: setup an enterBox with initial text taken
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7045
     from the codeview's selection."
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7046
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7047
    |sel box initialText superclass currentClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7048
     methods someMethod offeredClass anyClose closeName s usedGlobals list|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7049
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7050
    list := listOrNil.
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
    aBrowserOrNil notNil ifTrue:[    
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7053
        currentClass := aBrowserOrNil theSingleSelectedClass.
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
        sel := aBrowserOrNil selectionInCodeView.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7056
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7057
            aBrowserOrNil selectedNamespacesValue doWithExit:[:eachNs :exit |
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7058
                s := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7059
                (s knownAsSymbol
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7060
                and:[(Smalltalk at:s asSymbol) isBehavior]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7061
                    "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7062
                    sel := eachNs , '::' , sel asSymbol.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7063
                    exit value:nil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7064
                ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7065
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7066
            (sel knownAsSymbol and:[currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7067
            and:[(currentClass theNonMetaclass privateClassesAt:sel asSymbol) notNil]]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7068
                "/ a private class of current ...
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7069
                sel := (currentClass theNonMetaclass privateClassesAt:sel asSymbol) name
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7070
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7071
                (sel knownAsSymbol and:[(Smalltalk at:sel asSymbol) isBehavior]) ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7072
                    "/ ignore it, if there is no class-name which comes close.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7073
                    anyClose := false.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7074
                    Smalltalk keysAndValuesDo:[:aGlobalName :aGlobal|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7075
                        aGlobal isBehavior ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7076
                            aGlobal isMeta ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7077
                                aGlobal name == aGlobalName ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7078
                                    ((aGlobalName startsWith:sel)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7079
                                    or:[(sel startsWith:aGlobalName)]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7080
                                        closeName isNil ifTrue:[closeName := aGlobalName].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7081
                                        anyClose := true.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7082
                                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7083
                                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7084
                            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7085
                        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7086
                    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7087
                    anyClose ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7088
                        sel := nil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7089
                    ] ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7090
                        sel := closeName
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
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7093
            ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7094
        ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7095
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7096
        sel notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7097
            initialText := sel asString withoutSeparators
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7098
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7099
            aBrowserOrNil codeAspect == SyntaxHighlighter codeAspectMethod ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7100
                methods := aBrowserOrNil selectedMethodsValue.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7101
                methods size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7102
                    someMethod := methods first.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7103
                    usedGlobals := someMethod usedGlobals collect:[:eachVar | eachVar asSymbol].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7104
                    usedGlobals := usedGlobals select:[:eachVar | (Smalltalk at:eachVar) isBehavior].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7105
                    usedGlobals size > 0 ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7106
                        list := list reject:[:each | usedGlobals includes:each ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7107
                        list := usedGlobals asOrderedCollection sort , list.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7108
                        offeredClass := Smalltalk at:usedGlobals first
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7109
                    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7110
                        offeredClass := someMethod mclass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7111
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7112
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7113
            ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7114
                (aBrowserOrNil navigationState isVersionDiffBrowser
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7115
                or:[aBrowserOrNil navigationState isClassDocumentationBrowser]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7116
                    offeredClass := currentClass.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7117
                    (offeredClass notNil and:[offeredClass isPrivate]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7118
                        offeredClass := offeredClass owningClass
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7119
                    ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7120
                ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7121
                    (currentClass notNil
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7122
                    and:[(superclass := currentClass superclass) notNil]) ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7123
                        offeredClass := superclass
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
                ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7126
            ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7127
            offeredClass notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7128
                initialText := offeredClass theNonMetaclass name
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
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7133
    box := self
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7134
                enterBoxTitle:(self classResources string:title)
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7135
                withList:list
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7136
                okText:(self classResources string:okText).
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
    initialText notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7139
        box initialText:initialText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7140
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7141
    ^ box
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
    "Created: / 13-02-2000 / 20:56:18 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7144
    "Modified: / 27-07-2012 / 22:18:34 / cg"
17605
56c7694875b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17596
diff changeset
  7145
    "Modified (comment): / 27-07-2017 / 12:58:02 / cg"
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7146
!
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
enterBoxTitle:title withList:aListOrNil okText:okText
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7149
    "convenient method: setup enterBox"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7150
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7151
    |box rsrcs|
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
    aListOrNil notNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7154
        box := ListSelectionBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7155
        "/ box := EnterBoxWithList new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7156
        box list:aListOrNil.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7157
    ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7158
        box := EnterBox new.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7159
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7160
    rsrcs := self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7161
    box title:(rsrcs string:title) okText:(rsrcs string:okText).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7162
    ^ box
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7163
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
     self enterBoxTitle:'bla' withList:#('a' 'b' 'c') okText:'gaga'
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7166
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7167
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7168
    "Created: / 13.2.2000 / 20:53:53 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7169
    "Modified: / 1.3.2000 / 11:15:09 / cg"
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7170
!
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7171
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7172
extractClassAndSelectorFrom:aString into:aBlock
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7173
    "given a string which can be either 'class>>sel' or
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7174
     'class sel', extract className and selector, and call aBlock with
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7175
     the result.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7176
     Useful to open browser on a method as selected in some documentation."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7177
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7178
    |sel clsName isMeta sep s|
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7179
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7180
    sel := aString.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7181
    sel notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7182
        sel := sel asString withoutSeparators.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7183
        ('*>>*' match:sel) ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7184
            sep := $>
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7185
        ] ifFalse:[
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  7186
            ('*»*' match:sel) ifTrue:[
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  7187
                sep := $»
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7188
            ] ifFalse:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7189
                ('* *' match:sel) ifTrue:[
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7190
                    sep := Character space
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7191
                ]
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7192
            ].
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7193
        ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7194
        sep notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7195
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7196
             extract class/sel from selection
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7197
            "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7198
            s := ReadStream on:sel.
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7199
            clsName := (s upTo:sep) withoutSeparators.
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7200
            [s peek == sep] whileTrue:[s next].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7201
            sel := (s upToEnd) withoutSeparators.
2813
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
            (clsName endsWith:' class') ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7204
                isMeta := true.
12713
7cccc4a7733c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  7205
                clsName := clsName copyButLast:6 "copyTo:(clsName size - 5)"
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7206
            ] ifFalse:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7207
                isMeta := false
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7208
            ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7209
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7210
    ].
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7211
    aBlock value:clsName value:sel value:isMeta
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7212
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7213
    "Modified: / 17.6.1996 / 16:52:14 / stefan"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7214
    "Created: / 6.2.2000 / 00:51:51 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7215
    "Modified: / 6.2.2000 / 00:56:43 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7216
!
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
extractSelectorFrom:aString
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7219
    "given an arbitrary string, try to extract a useful selector.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7220
     Useful to open browser on a selected code fragment."
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7221
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7222
    |s sel sel2 t idx|
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7223
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7224
    aString isEmptyOrNil ifTrue:[^ nil].
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7225
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  7226
    (idx := aString indexOf:$») ~~ 0 ifTrue:[
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7227
        s := (aString copyFrom:idx+1) withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7228
        s isEmpty ifTrue:[^ nil]. 
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7229
    ] ifFalse:[    
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7230
        s := aString asString string withoutSeparators.
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7231
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7232
    sel := s asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7233
    sel isNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7234
        sel := s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7235
    ] ifFalse:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7236
        (sel endsWith:$:) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7237
            ^ sel.     
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7238
        ].
6705
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7239
    ].
b78bea6fd220 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
  7240
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7241
    t := Parser selectorInExpression:sel.
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7242
    t notNil ifTrue:[
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7243
        sel := t
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7244
    ].
16529
0514cf8d290b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16471
diff changeset
  7245
    (sel = s or:[sel isNil or:[t == #'>>']]) ifTrue:[
16863
d9e632f16155 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 16847
diff changeset
  7246
        "oops - that's probably not what we want here ..."
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7247
        self extractClassAndSelectorFrom:s into:[:c :s :m |
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7248
            sel := s
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7249
        ]
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7250
    ].
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7251
    s := sel asSymbolIfInterned.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7252
    s notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7253
        ^ s.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7254
    ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7255
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7256
    (sel startsWith:$#) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7257
        sel2 := sel copyFrom:2.
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7258
        ((sel2 startsWith:$') and:[(sel2 endsWith:$')]) ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7259
            sel2 := (sel2 copyFrom:2) copyButLast:1
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7260
        ].
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7261
        (sel2 := sel2 asSymbolIfInterned) notNil ifTrue:[
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7262
            ^ sel2.
8047
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7263
        ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7264
    ].
8bc319ff9ba7 better title in implementorsOfAny
Claus Gittinger <cg@exept.de>
parents: 7998
diff changeset
  7265
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7266
    ^ sel
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7267
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7268
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7269
     self extractSelectorFrom:'at:put:'      
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7270
     self extractSelectorFrom:'#at:put:'                       
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7271
     self extractSelectorFrom:'#''at:put:'''                       
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7272
     self extractSelectorFrom:'at:something put:someValue'     
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7273
     self extractSelectorFrom:'self at:something put:someValue'
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7274
     self extractSelectorFrom:'(self at:something put:someValue)' 
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7275
     self extractSelectorFrom:'[self at:something put:someValue] value' 
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  7276
     self extractSelectorFrom:'Array » at:put:' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7277
     self extractSelectorFrom:'Array>>at:put:' 
15976
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7278
     self extractSelectorFrom:'Array>>#at:put:' 
a9ca5b4f4369 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 15944
diff changeset
  7279
     self extractSelectorFrom:'Array>>#''at:put:''' 
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7280
    "
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7281
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7282
    "Created: / 6.2.2000 / 00:49:44 / cg"
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7283
    "Modified: / 6.2.2000 / 00:57:08 / cg"
6560
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7284
!
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7285
13028
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7286
getClassThenPerform:aSelector
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7287
    |classNameEntered classEntered enterBox resources|
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7288
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7289
    "/ new Code:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7290
    classNameEntered := self askForClassName.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7291
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7292
    "/ old Code:
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7293
"/    resources := self classResources.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7294
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7295
"/    enterBox := EnterBox title:(self classResources stringWithCRs:'Browse which class:').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7296
"/    enterBox okText:(resources string:'Browse').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7297
"/    enterBox entryCompletionBlock:(DoWhatIMeanSupport classNameEntryCompletionBlock).
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7298
"/    enterBox action:[:className | classNameEntered := className].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7299
"/    enterBox showAtPointer.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7300
"/
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7301
    classNameEntered notEmptyOrNil ifTrue:[   
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7302
        classEntered := Smalltalk classNamed:classNameEntered.
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7303
        classEntered isNil ifTrue:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7304
            self warn:(resources string:'No such class').
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7305
        ] ifFalse:[
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7306
            self perform:aSelector with:classEntered  
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7307
        ]
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7308
    ].
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7309
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7310
    "
fa823a68acdf class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12954
diff changeset
  7311
     SystemBrowser getClassThenPerform:#browseClass:
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
    "Modified: / 10-08-2006 / 12:54:20 / cg"
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
6560
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7317
resourceEditorClassFor:aResource 
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7318
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7319
     return an appropriate editor class."
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7320
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7321
    (aResource == #canvas) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7322
        ^ UIPainter
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7323
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7324
    (aResource == #menu) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7325
        ^ MenuEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7326
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7327
    ((aResource == #image) or:[aResource == #fileImage]) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7328
        ^ ImageEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7329
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7330
    (aResource == #help) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7331
        ^ UIHelpTool
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7332
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7333
    (aResource == #tableColumns) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7334
        ^ DataSetBuilder
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7335
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7336
    (aResource == #tabList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7337
        ^ TabListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7338
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7339
    (aResource == #hierarchicalList) ifTrue:[
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7340
        ^ HierarchicalListEditor
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7341
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7342
    ^ nil
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
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7345
resourceEditorClassForResources:resources
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7346
    "resources are from a methods resource-info;
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7347
     return an appropriate editor class."
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
    resources keysDo:[:eachResource |
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7350
        |editor|
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7351
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7352
        editor := self resourceEditorClassFor:eachResource.
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7353
        editor notNil ifTrue:[ ^ editor].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7354
    ].
80370d5aa971 share code between old and new browser
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
  7355
    ^ nil
2813
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7356
! !
ebef400fdd3b code reuse
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
  7357
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7358
!SystemBrowser::BrowserHistoryEntry methodsFor:'accessing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7359
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7360
className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7361
    "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
  7362
13947
dd203de7c75a class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 13921
diff changeset
  7363
    ^ className ? '*anonymous*'
3131
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
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7366
className:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7367
    "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
  7368
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7369
    className := something.
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
3151
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7372
className:classNameArg meta:metaArg selector:selectorArg
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7373
    className := classNameArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7374
    meta := metaArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7375
    selector := selectorArg.
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7376
!
910fd5bcfb6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3131
diff changeset
  7377
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7378
icon
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7379
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7380
    ^nil
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7381
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7382
    "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
  7383
!
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
label
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
    ^self displayString
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
    "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
  7390
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7391
3131
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7392
meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7393
    "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
  7394
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7395
    ^ meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7396
!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7397
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7398
meta:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7399
    "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
  7400
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7401
    meta := something.
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
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7404
selector
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7405
    "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
  7406
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7407
    ^ selector
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
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7410
selector:something
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7411
    "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
  7412
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7413
    selector := something.
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
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7416
theClass
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7417
    ^ Smalltalk at:className asSymbol
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7418
! !
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
!SystemBrowser::BrowserHistoryEntry methodsFor:'comparing'!
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7421
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7422
= anEntry
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7423
    ^ className = anEntry className
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7424
      and:[meta = anEntry meta
883d7b34bb86 history stuff refactored (common between old and new browser)
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7425
      and:[selector = anEntry selector]]
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
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7428
!SystemBrowser::BrowserHistoryEntry methodsFor:'displaying'!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7429
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7430
displayOn:aGCOrStream
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7431
    | cls name |
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7432
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7433
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
17432
c15b22dc05c9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17404
diff changeset
  7434
    "/ 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
  7435
    (aGCOrStream isStream) ifFalse:[
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7436
        ^ super displayOn:aGCOrStream
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
13820
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7439
    cls := self theClass.
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7440
    name := cls notNil ifTrue:[cls nameInBrowser] ifFalse:[className].
4a9bc4698533 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13552
diff changeset
  7441
    name printOn:aGCOrStream.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7442
    meta ifTrue:[
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7443
        "/ aGCOrStream emphasis:#bold.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7444
        aGCOrStream nextPutAll:' class'.
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7445
        "/ aGCOrStream emphasis:nil.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7446
    ].
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7447
    selector notNil ifTrue:[ 
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7448
        aGCOrStream
18157
f8144e0ca395 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18149
diff changeset
  7449
            nextPutAll:' » ';
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7450
            bold;
16037
3393fbb61d79 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 16027
diff changeset
  7451
            nextPutAll:selector;
17543
caad87fae8a9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17498
diff changeset
  7452
            normal.
13319
93eadba89fa6 Refactor to implement #displayOn:aGcOrStream instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13128
diff changeset
  7453
    ].
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7454
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7455
    "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
  7456
    "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
  7457
    "Modified: / 20-06-2017 / 08:59:26 / cg"
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7458
! !
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7459
820
2a412afad51d fixed autoSearch, when searching for a private-classes name
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
  7460
!SystemBrowser class methodsFor:'documentation'!
93
claus
parents: 90
diff changeset
  7461
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7462
version
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7463
    ^ '$Header$'
12822
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7464
!
cda365756f93 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12785
diff changeset
  7465
8851
287f3e03a645 changed: #iconForClass:
Claus Gittinger <cg@exept.de>
parents: 8759
diff changeset
  7466
version_CVS
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7467
    ^ '$Header$'
10048
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7468
!
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7469
9e92f3285051 changed: #instVarOverlayXmlSpec
Claus Gittinger <cg@exept.de>
parents: 9879
diff changeset
  7470
version_SVN
15831
36652445494b class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 15565
diff changeset
  7471
    ^ '$Id$'
36
ccde5a941840 *** empty log message ***
claus
parents:
diff changeset
  7472
! !
4112
ed7af6707ad7 emphasisForChangedCode
tm
parents: 3834
diff changeset
  7473
12475
469fd10da830 class: SystemBrowser
Claus Gittinger <cg@exept.de>
parents: 12073
diff changeset
  7474
203
de8d39d459fd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
  7475
SystemBrowser initialize!