extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 05 Sep 2013 23:34:32 +0200
changeset 13504 2c37f59ad97b
parent 13423 792b998bcc1a
child 13530 2269bce1636d
child 13639 c3544245d01b
permissions -rw-r--r--
Added ProgrammingLanguage>>toolbox(Class)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
     1
"{ Package: 'stx:libtool' }"!
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
     2
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     3
!AbstractSyntaxHighlighter class methodsFor:'api highlighting'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     4
10749
4b121ee1c5de comment/format in: #formatExpression:in:elementsInto:
Claus Gittinger <cg@exept.de>
parents: 10724
diff changeset
     5
formatExpression:aString in:aClass elementsInto:elementsCollection
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     6
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     7
    ^self formatExpression:aString in:aClass
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     8
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
     9
    "Created: / 25-07-2010 / 08:57:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10749
4b121ee1c5de comment/format in: #formatExpression:in:elementsInto:
Claus Gittinger <cg@exept.de>
parents: 10724
diff changeset
    10
    "Modified (format): / 04-10-2011 / 19:47:20 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    11
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    12
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    13
!AbstractSyntaxHighlighter class methodsFor:'api highlighting'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    14
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    15
formatMethod:aString in:aClass using:preferencesOrNil elementsInto: elements
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    16
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    17
    ^self formatMethod:aString in:aClass using:preferencesOrNil
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    18
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    19
    "Created: / 25-07-2010 / 08:58:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    20
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
    21
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    22
!ArrayedCollection methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    23
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    24
inspector2TabForHexDump
11401
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    25
    "a tab, showing a hex dump; defined here, so that both byteArrays and other bulk data
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    26
     containers can define it in their inspector2Tabs methods."
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    27
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    28
    |wrapper myByteSize v genDump baseAddress|
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    29
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    30
    myByteSize := self size * self class elementByteSize.
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    31
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    32
    wrapper := Plug new.
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    33
    wrapper respondTo:#size with:[ myByteSize ].
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    34
    wrapper respondTo:#at: with:[:byteIdx | self byteAt:byteIdx ].
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    35
    wrapper respondTo:#do: with:[:aBlock | 1 to:myByteSize 
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    36
                                            do:[:i |
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    37
                                                aBlock value:(self byteAt:i) 
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    38
                                            ].
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    39
                                ].
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    40
11401
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    41
    baseAddress := 0.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    42
    genDump := [
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    43
                    |dump|
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    44
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    45
                    v topView withWaitCursorDo:[
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    46
                        dump := AbstractFileBrowser 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    47
                            contentsOfBytesAsHexDump:wrapper 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    48
                            numberOfAddressDigits:(myByteSize hexPrintString size) 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    49
                            addressStart:baseAddress.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    50
                        v list:dump expandTabs:false scanForNonStrings:false includesNonStrings:false.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    51
                    ].
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    52
               ].
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    53
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    54
    v := ScrollableView for:TextView. 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    55
    genDump value.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    56
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    57
    v scrolledView 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    58
        menuHolder:
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    59
            [    
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    60
                |m| 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    61
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    62
                m := v scrolledView editMenu.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    63
                m addLabel:'-' selector:nil.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    64
                m addLabel:'Change Base Address...' selector:#changeBase.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    65
                m actionAt:#changeBase 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    66
                    put:[ 
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    67
                        |s b|
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    68
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    69
                        s := Dialog request:'Base address (hex):' initialAnswer:(baseAddress printStringRadix:16).
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    70
                        s notEmptyOrNil ifTrue:[
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    71
                            b := Integer readFrom:s radix:16 onError:nil.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    72
                            b notNil ifTrue:[
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    73
                                baseAddress := b. genDump value
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    74
                            ].
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    75
                        ].
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    76
                    ].
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    77
                m.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    78
            ];
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    79
        menuMessage: #value.
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    80
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    81
    ^ Tools::Inspector2Tab new
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    82
            priority: 40;
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    83
            label:'Hexdump';
11401
a228326e3eee changed: #inspector2TabForHexDump
Claus Gittinger <cg@exept.de>
parents: 11400
diff changeset
    84
            view: v;
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    85
            yourself
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    86
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    87
    "Created: / 13-02-2012 / 15:08:42 / cg"
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    88
! !
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
    89
11838
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    90
!Behavior methodsFor:'inspecting'!
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    91
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    92
inspectorExtraAttributes
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    93
    "extra (pseudo instvar) entries to be shown in an inspector."
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    94
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    95
    ^ Dictionary new
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    96
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    97
        add:(self isMeta
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    98
                ifFalse:[ '-meta' -> [ self theMetaclass ] ]
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
    99
                ifTrue:[ '-nonMeta' -> [ self theNonMetaclass ] ]);
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
   100
        yourself
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
   101
! !
f0b57bc138d4 meta/nonmeta in class inspection
Claus Gittinger <cg@exept.de>
parents: 11827
diff changeset
   102
11852
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   103
!Behavior methodsFor:'inspecting'!
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   104
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   105
inspectorValueStringInListFor:anInspector
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   106
    "returns a string to be shown in the inspector's list"
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   107
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   108
    |nm|
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   109
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   110
    (nm := self name) notEmptyOrNil ifTrue:[
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   111
        ^ nm
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   112
    ].
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   113
    ^ super inspectorValueStringInListFor:anInspector
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   114
! !
532a96275343 changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11838
diff changeset
   115
10859
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   116
!Block methodsFor:'inspecting'!
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   117
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   118
inspectorExtraAttributes
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   119
    "extra (pseudo instvar) entries to be shown in an inspector."
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   120
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   121
    self homeMethod isNil ifTrue:[
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   122
        ^ Dictionary new
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   123
            declareAllNewFrom:(super inspectorExtraAttributes ? #());
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   124
            add:'-code' -> 'no home method';
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   125
            add:'-source' -> 'no home method';
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   126
            yourself
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   127
    ].
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   128
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   129
    ^ Dictionary new
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   130
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   131
        add:'-code' -> [ String streamContents:[:s | self homeMethod decompileTo:s]];
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   132
        add:'-source' -> [ self homeMethod source];
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   133
        yourself
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   134
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   135
    "Created: / 15-11-2011 / 14:24:10 / cg"
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   136
! !
38ebf3f1299e block decompile in inspector
Claus Gittinger <cg@exept.de>
parents: 10851
diff changeset
   137
13423
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   138
!Boolean methodsFor:'inspecting'!
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   139
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   140
inspectorValueStringInListFor:anInspector
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   141
    "returns a string to be shown in the inspector's list"
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   142
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   143
    ^ self printString
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   144
! !
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
   145
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   146
!Breakpoint methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   147
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   148
icon
10310
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   149
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   150
    ^description icon
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   151
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   152
    "Created: / 11-07-2011 / 18:21:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   153
! !
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   154
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   155
!BreakpointDescription methodsFor:'accessing'!
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   156
cf3cfd80f443 #icon moved to stx:libtool
vrany
parents: 10240
diff changeset
   157
icon
10202
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   158
    "do not use abbreviations like bpnt or brp or similar;
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   159
     when I do not know the exact name, I tend to search for implementors/senders
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   160
     of '*break*' or '*disabled*'.
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   161
     I will not find anything useful and have to single step if methods are named
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   162
     cryptically."
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   163
10202
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   164
    condition isNil ifTrue:[
12821
a8bd435271a0 class: ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 12814
diff changeset
   165
        state == #enabled ifTrue:[^ ToolbarIconLibrary breakpointRedEnabled].
a8bd435271a0 class: ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 12814
diff changeset
   166
        state == #disabled ifTrue:[^ ToolbarIconLibrary breakpointRedDisabled].
a8bd435271a0 class: ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 12814
diff changeset
   167
        state == #tracing ifTrue:[^ ToolbarIconLibrary tracepointBlue].
10202
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   168
    ] ifFalse:[
12821
a8bd435271a0 class: ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 12814
diff changeset
   169
        state == #enabled ifTrue:[^ ToolbarIconLibrary breakpointBlueEnabled].
a8bd435271a0 class: ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 12814
diff changeset
   170
        state == #disabled ifTrue:[^ ToolbarIconLibrary breakpointBlueDisabled].
10202
34f07f3a4f8a comment/format in: #toggle
Claus Gittinger <cg@exept.de>
parents: 10164
diff changeset
   171
    ].
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   172
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   173
    ^nil
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   174
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   175
    "Created: / 28-06-2011 / 08:29:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11222
225353236163 changed: #icon
Claus Gittinger <cg@exept.de>
parents: 10859
diff changeset
   176
    "Modified: / 27-01-2012 / 13:46:23 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   177
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   178
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   179
!ByteArray methodsFor:'inspecting'!
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   180
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   181
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   182
    "extra (pseudo instvar) entries to be shown in an inspector."
8839
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   183
12768
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   184
    |basePrinter|
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   185
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   186
    basePrinter := 
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   187
        [:arr :b |
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   188
            String
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   189
                streamContents:[:s |
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   190
                    arr class isWords ifTrue:[
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   191
                        arr asWordArray printOn:s base:b showRadix:true
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   192
                    ] ifFalse:[
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   193
                        arr class isLongs ifTrue:[
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   194
                            arr asLongIntegerArray printOn:s base:b showRadix:true
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   195
                        ] ifFalse:[
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   196
                            arr asByteArray printOn:s base:b showRadix:true
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   197
                        ]
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   198
                    ]
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   199
                ]
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   200
        ].
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   201
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   202
    ^ Dictionary new
9324
86307b0d7c57 hexString in inspector for ByteArrays
Claus Gittinger <cg@exept.de>
parents: 9050
diff changeset
   203
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
86307b0d7c57 hexString in inspector for ByteArrays
Claus Gittinger <cg@exept.de>
parents: 9050
diff changeset
   204
        add:'-hexstring' -> [ self hexPrintString "WithSeparator:Character space" ];
12768
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   205
        add:'-hexadecimal' -> [ basePrinter value:self value:16 ];
c88af8fef47e class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 12661
diff changeset
   206
        add:'-binary' -> [ basePrinter value:self value:2 ];
9324
86307b0d7c57 hexString in inspector for ByteArrays
Claus Gittinger <cg@exept.de>
parents: 9050
diff changeset
   207
        yourself
7365
20fe515d3a34 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   208
! !
20fe515d3a34 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7356
diff changeset
   209
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   210
!Change methodsFor:'private'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   211
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   212
flattenOnto: aCollection 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   213
	aCollection add: self
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   214
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   215
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   216
!Change methodsFor:'private'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   217
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   218
flattenedChanges
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   219
	| changes |
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   220
	changes := OrderedCollection new.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   221
	self flattenOnto: changes.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   222
	^changes
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   223
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   224
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   225
!Change methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   226
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   227
removed
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   228
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   229
    ^(self objectAttributeAt: #removed) ? false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   230
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   231
    "Created: / 24-10-2009 / 21:10:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   232
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   233
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   234
!Change methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   235
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   236
removed: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   237
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   238
    ^self objectAttributeAt: #removed put: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   239
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   240
    "Created: / 24-10-2009 / 21:11:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   241
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   242
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   243
!ChangeSet methodsFor:'utilities'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   244
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   245
condenseChangesForRemoved
11971
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   246
    "remove all changes which have been removed 
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   247
     (marked for removal by aChange removed: true)"
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   248
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   249
    |changesToRemove|
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   250
11971
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   251
    changesToRemove := 
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   252
        self select:[:aChange | 
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   253
            aChange isCompositeChange ifTrue:[
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   254
                aChange condenseChangesForRemoved
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   255
            ].        
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   256
            aChange removed
69a53e6321ec comment/format in: #condenseChangesForRemoved
Claus Gittinger <cg@exept.de>
parents: 11897
diff changeset
   257
        ].
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   258
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   259
    self condenseChanges:changesToRemove
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   260
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   261
    "Created: / 05-11-2001 / 14:21:17 / cg"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   262
    "Modified: / 12-10-2006 / 16:51:27 / cg"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   263
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   264
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   265
!Character methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   266
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   267
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   268
    "extra (pseudo instvar) entries to be shown in an inspector."
8677
Claus Gittinger <cg@exept.de>
parents: 8417
diff changeset
   269
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   270
    ^ Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   271
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   272
	add:'-hexValue' -> [ self codePoint radixPrintStringRadix:16 ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   273
	add:'-string' -> [ self stringSpecies with:self ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   274
	add:'-utf8String' -> [ self utf8Encoded ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   275
	add:'-utf8' -> [ self utf8Encoded asByteArray hexPrintStringWithSeparator:Character space ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   276
	yourself
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   277
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   278
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   279
     $a inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   280
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   281
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   282
    "Created: / 22-10-2006 / 03:52:20 / cg"
7447
744eea8ff31c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7371
diff changeset
   283
! !
744eea8ff31c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7371
diff changeset
   284
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   285
!Character methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   286
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   287
inspectorValueStringInListFor:anInspector
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   288
    "returns a string to be shown in the inspector's list"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   289
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   290
    (asciivalue <= 16r7f) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   291
        ^ self storeString,(' "16r%1 %2"' bindWith:(asciivalue hexPrintString) with:asciivalue)
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   292
    ].
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   293
    ^ self storeString,(' "%1"' bindWith:asciivalue)
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   294
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   295
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
   296
!CharacterArray methodsFor:'inspecting'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   297
10355
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   298
inspector2TabBytes
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   299
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   300
    ^self newInspector2Tab
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   301
        label: 'Bytes';
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   302
        priority: 25;
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
   303
        view: ((ScrollableView for:EditTextView) contents: 
10355
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   304
                (self asByteArray hexPrintStringWithSeparator:Character space); yourself)
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   305
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   306
    "Created: / 17-02-2008 / 10:10:50 / janfrog"
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   307
    "Created: / 20-07-2011 / 16:36:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
   308
    "Modified: / 21-08-2011 / 07:32:57 / cg"
10355
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   309
! !
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   310
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   311
!CharacterArray methodsFor:'inspecting'!
82ee4e550517 Added missing CharacterArray>>inspector2TabBytes
vrany
parents: 10336
diff changeset
   312
10851
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   313
inspector2TabHTML
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   314
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   315
    ^self newInspector2Tab
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   316
        label: 'HTML';
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   317
        priority: 35;
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   318
        view: ((ScrollableView for:HTMLDocumentView) setText: self; yourself)
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   319
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   320
    "Created: / 17-02-2008 / 10:10:50 / janfrog"
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   321
    "Created: / 07-11-2011 / 12:35:15 / cg"
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   322
! !
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   323
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   324
!CharacterArray methodsFor:'inspecting'!
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   325
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   326
inspector2TabText
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   327
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   328
    ^self newInspector2Tab
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   329
        label: 'String';
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
   330
        priority: 50;
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
   331
        view: ((ScrollableView for:EditTextView) contents: self; yourself)
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   332
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   333
    "Created: / 17-02-2008 / 10:10:50 / janfrog"
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
   334
    "Modified: / 21-08-2011 / 08:02:57 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   335
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   336
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
   337
!CharacterArray methodsFor:'inspecting'!
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   338
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   339
inspector2Tabs
10851
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   340
    HTMLDocumentView notNil ifTrue:[
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   341
        (self startsWith:'<!!DOCTYPE html') ifTrue:[
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   342
            ^ #( inspector2TabCommon inspector2TabText inspector2TabBytes inspector2TabHTML )
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   343
        ].
26a08a701fde string: inspector \"knows\" about html
Claus Gittinger <cg@exept.de>
parents: 10839
diff changeset
   344
    ].
10314
260acdfbc85c added: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10313
diff changeset
   345
    ^ #( inspector2TabCommon inspector2TabText inspector2TabBytes )
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   346
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   347
    "Created: / 05-07-2011 / 13:40:27 / cg"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   348
! !
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
   349
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   350
!CharacterArray methodsFor:'inspecting'!
8417
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   351
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   352
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   353
    "extra (pseudo instvar) entries to be shown in an inspector."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   354
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   355
    |d|
8417
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   356
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   357
    d := Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   358
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   359
	add:'-utf8String' -> [ self utf8Encoded ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   360
	add:'-utf8' -> [ self utf8Encoded asByteArray hexPrintStringWithSeparator:Character space ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   361
	yourself.
8839
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   362
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   363
    HTMLUtilities notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   364
	d add:'-html' -> [ HTMLUtilities escapeCharacterEntities:self ].
8417
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   365
    ].
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   366
    ^ d
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   367
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   368
    "
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   369
     'aou' inspect
8417
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   370
    "
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   371
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   372
    "Created: / 22-10-2006 / 03:52:20 / cg"
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   373
! !
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   374
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   375
!CharacterArray methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   376
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   377
inspectorValueStringInListFor:anInspector
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   378
    "returns a string to be shown in the inspector's list"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   379
12092
5d54707918dc class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 12051
diff changeset
   380
    ^ self basicStoreString contractTo:30.
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   381
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   382
12361
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   383
!Class methodsFor:'misc'!
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   384
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   385
inspectorClass
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   386
    "redefined to launch a ClassInspector, which knows about classVariables
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   387
     (instead of the default InspectorView)."
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   388
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   389
    ClassInspectorView notNil ifTrue:[
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   390
        ^ ClassInspectorView
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   391
    ].
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   392
    ^ super inspectorClass
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   393
! !
dc6575e4dcfa inspectorClass methods moved to libtool package
Claus Gittinger <cg@exept.de>
parents: 12356
diff changeset
   394
11827
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   395
!Collection methodsFor:'inspecting'!
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   396
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   397
inspectorValueStringInListFor:anInspector
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   398
    "returns a string to be shown in the inspector's list"
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   399
11891
85e5a231ffeb collection shows size in inspector
Claus Gittinger <cg@exept.de>
parents: 11852
diff changeset
   400
    |sz|
85e5a231ffeb collection shows size in inspector
Claus Gittinger <cg@exept.de>
parents: 11852
diff changeset
   401
85e5a231ffeb collection shows size in inspector
Claus Gittinger <cg@exept.de>
parents: 11852
diff changeset
   402
    (sz := self size) == 0 ifTrue:[
11827
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   403
        ^ 'empty ' , self className
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   404
    ].
11891
85e5a231ffeb collection shows size in inspector
Claus Gittinger <cg@exept.de>
parents: 11852
diff changeset
   405
    ^ (super inspectorValueStringInListFor:anInspector),' size=',sz printString
11827
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   406
! !
7fc67c9afc32 collection
Claus Gittinger <cg@exept.de>
parents: 11792
diff changeset
   407
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   408
!Color methodsFor:'inspecting'!
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   409
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   410
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   411
    "return the class of an appropriate inspector.
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   412
     ST/X has a specialized ColorInspectorView for that"
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   413
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   414
    ^ ColorInspectorView
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   415
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   416
    "Modified: 23.4.1996 / 13:39:50 / cg"
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   417
! !
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   418
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   419
!Color methodsFor:'inspecting'!
8406
445174a4db22 #inspectorExtraAttributes
Stefan Vogel <sv@exept.de>
parents: 7754
diff changeset
   420
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   421
inspectorExtraAttributes
8677
Claus Gittinger <cg@exept.de>
parents: 8417
diff changeset
   422
    "extra (pseudo instvar) entries to be shown in an inspector."
Claus Gittinger <cg@exept.de>
parents: 8417
diff changeset
   423
8406
445174a4db22 #inspectorExtraAttributes
Stefan Vogel <sv@exept.de>
parents: 7754
diff changeset
   424
    ^ Dictionary new
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   425
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   426
	add:'-rgb' -> [ self rgbValue hexPrintString ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   427
	add:'-html' -> [ self htmlPrintString ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   428
	yourself
8417
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   429
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   430
    "
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   431
     Color red inspect
7ba7a8ebe38c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8406
diff changeset
   432
    "
8406
445174a4db22 #inspectorExtraAttributes
Stefan Vogel <sv@exept.de>
parents: 7754
diff changeset
   433
! !
445174a4db22 #inspectorExtraAttributes
Stefan Vogel <sv@exept.de>
parents: 7754
diff changeset
   434
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   435
!Color methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   436
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   437
inspectorValueStringInListFor:anInspector
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   438
    "returns a string to be shown in the inspector's list"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   439
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   440
    ^ self htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   441
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
   442
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   443
!CompositeChange methodsFor:'utilities'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   444
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   445
condenseChangesForRemoved
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   446
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   447
    self changes condenseChangesForRemoved
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   448
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   449
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   450
!CompositeChange methodsFor:'private'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   451
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   452
flattenOnto: aCollection
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   453
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   454
    changes do:[:change|change flattenOnto: aCollection]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   455
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   456
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   457
!CompositeChange methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   458
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   459
removed
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   460
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   461
    ^changes allSatisfy: [:e|e removed]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   462
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   463
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   464
!CompositeChange methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   465
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   466
removed: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   467
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   468
    changes do:[:e|e removed: aBoolean]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   469
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   470
9691
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   471
!Date methodsFor:'inspecting'!
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   472
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   473
inspectorExtraAttributes
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   474
    "extra (pseudo instvar) entries to be shown in an inspector."
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   475
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   476
    ^ Dictionary new
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   477
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   478
        add:'-dayInWeek' -> [ self dayInWeek printString , ' "', self dayOfWeekName , '"' ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   479
        add:'-dayInYear' -> [ self dayInYear ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   480
        add:'-daysInMonth' -> [ self daysInMonth ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   481
        add:'-monthName' -> [ self monthName ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   482
        add:'-leapYear' -> [ self isLeapYear ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   483
        yourself
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   484
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   485
    "
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   486
     Date today inspect
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   487
    "
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   488
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   489
    "Created: / 20-01-2011 / 12:19:05 / cg"
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   490
! !
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
   491
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   492
!Dictionary methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   493
10316
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   494
inspector2TabLabel
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   495
    ^ 'Dictionary'
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   496
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   497
    "Created: / 14-07-2011 / 11:57:18 / cg"
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   498
! !
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   499
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   500
!Dictionary methodsFor:'inspecting'!
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
   501
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   502
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   503
    "redefined to use DictionaryInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   504
     (instead of the default Inspector)."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   505
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   506
    ^ DictionaryInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   507
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   508
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   509
!EditTextView methodsFor:'accessing-dimensions'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   510
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   511
absoluteXOfPosition:positionInText 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   512
    |accumulatedX container|
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   513
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   514
    accumulatedX := 0.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   515
    container := self.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   516
    [ container notNil ] whileTrue:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   517
        accumulatedX := accumulatedX + container origin x.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   518
        container := container isTopView ifFalse:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   519
                    container container
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   520
                ] ifTrue:[ nil ].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   521
    ].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   522
    ^ (self xOfPosition:positionInText) + accumulatedX
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   523
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   524
    "Created: / 16-02-2010 / 10:05:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   525
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   526
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   527
!EditTextView methodsFor:'accessing-dimensions'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   528
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   529
absoluteYOfCursor
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   530
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   531
    | accumulatedY container |
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   532
    accumulatedY := 0.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   533
    container := self.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   534
    [ container notNil ] whileTrue:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   535
        accumulatedY := accumulatedY + container origin y.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   536
        container := container isTopView 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   537
            ifFalse:[container container]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   538
            ifTrue:[nil].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   539
    ].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   540
    ^(self yOfCursor) + accumulatedY
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   541
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   542
    "Created: / 27-05-2005 / 07:45:53 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   543
    "Modified: / 27-05-2005 / 23:03:40 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   544
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   545
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   546
!EditTextView methodsFor:'accessing-dimensions'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   547
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   548
xOfPosition: positionInText
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   549
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   550
    | line col |
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   551
    line := self lineOfCharacterPosition: positionInText.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   552
    col  := positionInText - (self characterPositionOfLine:line col:1) + 1.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   553
    ^
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   554
        (self xOfCol:col inVisibleLine:(self listLineToVisibleLine: line))
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   555
            - viewOrigin x.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   556
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   557
    "Created: / 16-02-2010 / 10:04:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   558
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   559
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   560
!EditTextView methodsFor:'accessing-dimensions'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   561
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   562
yOfCursor
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   563
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   564
    ^self yOfVisibleLine:cursorVisibleLine.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   565
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   566
    "Created: / 27-05-2005 / 07:43:41 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   567
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   568
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   569
!EditTextView methodsFor:'accessing-dimensions'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   570
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   571
yOfPosition: positionInText
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   572
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   573
    | line |
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   574
    line := self lineOfCharacterPosition: positionInText.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   575
    ^self yOfVisibleLine:(self listLineToVisibleLine: line)
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   576
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   577
    "Created: / 16-02-2010 / 10:08:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   578
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   579
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   580
!ExecutableFunction methodsFor:'printing & storing'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   581
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   582
printStringForBrowserWithSelector:selector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   583
    "return a printString to represent myself to the user in a browser."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   584
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   585
    ^ self printStringForBrowserWithSelector:selector inClass:nil
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   586
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   587
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   588
!Form methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   589
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   590
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   591
    "redefined to launch an ImageInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   592
     (instead of the default InspectorView)."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   593
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   594
    ^ ImageInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   595
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   596
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   597
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   598
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   599
bookmarks22x22
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   600
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   601
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   602
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   603
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   604
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   605
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   606
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   607
     self bookmarks22x22 inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   608
     ImageEditor openOnClass:self andSelector:#bookmarks22x22
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   609
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   610
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   611
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   612
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   613
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   614
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   615
        constantNamed:'GenericToolbarIconLibrary class bookmarks22x22'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   616
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   617
????????????????????????????????????????????????????????????????????????LT;??????????????????????????6BAD/??????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   618
?????????16L''"+???????????????????????<7''95Y????????????????????????YI2[_!!C?????????????????????GXZZ&Y\0????????????I$YF
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   619
Q$YFQUBX%)VRZ%YAO34=OR????=T#9RT$9FP#(6K"(VB_718]U0%????FC)9"X"G!!HN@_W]4\V=)YT@E????????J&Y;^''Y3\''A-ZFI_UR8A??????????<Q
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   620
SF9,Z6]#WU!!SQBW??????????????1YWXU9ZTT5IP2K???????????????<)V5IOR$\>NS (????????????????M$-HP#,3KB\ZE07?????????????GST<
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   621
MB4$GATNB0(]?????????????142J18[@O<RC0XCD?????????????<!!H1$G?????1@T@ $H????????????G2@D?????????14L????????????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   622
?????????????????????????????????????????????0@a') ; colorMapFromArray:#[143 162 38 146 165 38 153 167 24 155 168 21 149 168 39 149 169 39 156 169 21 151 170 40 151 171 40 156 171 30 159 173 22 160 174 20 156 174 34 154 175 41 162 176 20 159 176 32 156 176 41 156 177 41 157 177 41 159 178 37 159 178 38 163 179 26 158 179 42 163 180 27 159 180 42 162 180 35 166 181 20 160 181 40 161 181 39 160 181 42 165 181 28 162 181 37 161 181 40 162 181 38 161 181 41 168 181 23 162 182 36 161 182 41 161 182 43 168 183 20 163 183 35 162 183 41 162 183 42 170 184 22 169 185 20 169 185 23 164 185 38 164 185 40 164 185 42 164 185 43 171 186 24 171 187 21 172 187 22 170 187 29 168 187 35 165 187 44 171 188 19 173 190 19 168 189 44 174 190 21 174 190 22 170 192 37 176 192 20 170 192 38 171 193 33 171 193 38 177 193 21 176 194 19 174 194 26 172 193 47 172 193 48 178 195 20 179 195 21 179 197 19 180 197 20 180 197 21 176 197 38 181 199 19 177 199 46 183 201 20 179 200 50 184 202 19 185 202 21 184 203 18 180 201 50 183 204 21 181 203 37 184 204 27 185 205 18 181 204 45 187 205 19 187 205 21 183 206 27 187 208 18 189 208 20 189 210 17 186 208 51 191 210 20 190 211 17 190 211 19 187 209 53 191 213 17 190 211 43 193 213 19 193 214 17 194 216 16 192 215 38 195 216 20 196 217 25 196 218 18 196 217 28 196 219 17 198 220 18 199 221 17 200 222 23 201 222 28 201 224 17 200 225 16 203 223 33 203 225 20 202 226 16 202 223 51 204 224 38 204 224 41 203 227 16 204 226 26 203 226 47 204 229 16 206 227 34 203 227 53 206 230 21 207 228 39 208 228 43 207 231 26 207 228 60 209 229 48 209 229 51 210 229 52 209 232 33 210 232 39 209 231 58 211 233 46 212 234 52 213 233 63 213 234 56 214 235 59 214 237 41 215 235 62 215 235 64 215 238 49 217 238 55 217 240 46 218 239 61 219 242 53 220 242 59 222 245 56 223 245 62 224 248 57 224 248 58 224 248 64 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@C@@@C @@G @@G @@G0@@O0@_??8O??8O??0C?? A?>@@?<@@?<@@?>@A?>@A>>@A8_@A0F@@@@@@@@@') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   623
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   624
    "Modified: / 05-05-2011 / 12:45:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   625
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   626
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   627
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   628
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   629
bug16x16Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   630
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   631
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   632
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   633
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   634
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   635
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   636
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   637
     self bug16x16Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   638
     ImageEditor openOnClass:self andSelector:#bug16x16Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   639
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   640
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   641
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   642
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   643
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   644
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   645
        constantNamed:'GenericToolbarIconLibrary class bug16x16Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   646
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   647
???????????????????????????????????????????????????3R/??????????????????O"_???????????????????7=?#J1???????????=???=IBP$
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   648
?_????????????7=W5=_W5?=O/7???????>L?PLC@0LC?_????????7=/4S[7S 8TY/=?VC?????L#L.>JI3I+A%H#[?????GA3_]U*/M3_;BPRLD_????7=
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   649
?_B@M>DE-04>?U/??????2_=HEXYQ7:R<Q_???????4>G2$%Q9QEL?5_??????????<=?\;M??????????????????=-H????????0@a') ; colorMapFromArray:#[205 205 205 227 35 35 106 106 106 98 98 98 135 135 135 163 34 34 101 5 5 124 124 124 48 2 2 227 11 11 173 173 173 218 54 54 241 241 241 235 19 19 225 225 225 219 18 18 245 58 58 214 214 214 249 46 46 90 90 90 254 61 61 36 36 36 176 176 176 233 233 233 114 114 114 255 78 78 212 33 33 230 57 57 61 61 61 94 94 94 76 76 76 19 19 19 255 57 57 161 161 161 83 83 83 217 217 217 249 249 249 255 65 65 139 2 2 27 27 27 169 169 169 253 53 53 210 28 28 251 251 251 154 154 154 117 117 117 195 1 1 245 245 245 145 145 145 218 5 5 230 230 230 69 2 2 181 181 181 11 11 11 141 141 141 249 61 61 205 21 21 165 165 165 157 157 157 241 28 28 223 223 223 109 109 109 2 2 2 245 45 45 146 0 0 69 69 69 137 137 137 140 40 40 188 1 1 206 24 24 219 33 33 255 76 76 249 49 49 249 56 56 236 236 236 121 121 121 248 53 53 171 1 1 111 40 40 237 41 41 178 21 21 205 16 16 129 129 129 163 1 1 155 18 18 85 4 4 243 68 68 73 73 73 45 45 45 202 51 51 241 40 40 86 86 86 114 1 1 210 4 4 246 41 41 148 148 148 189 189 189 209 209 209 210 17 17 158 28 28 213 5 5 205 1 1 53 53 53 217 9 9 69 40 40 187 10 10 255 74 74 218 28 28 146 11 11 65 65 65 232 37 37 101 101 101 196 26 26 245 53 53 188 26 26 213 10 10 184 184 184 206 5 5 249 65 65 172 21 21 206 34 34 195 195 195 237 32 32 131 12 12 233 29 29 179 36 36 241 37 37 139 13 13 245 49 49 180 1 1 168 37 37 198 198 198 202 202 202 228 21 21 206 10 10 206 29 29 229 30 30 255 80 80 188 20 20 245 37 37 57 57 57 252 50 50 87 42 42 172 10 10 209 13 13 155 4 4 164 11 11 242 44 44 255 70 70 225 25 25 222 14 14 237 24 24 240 49 49 205 13 13 202 44 44 201 0 0 225 17 17 186 42 42 255 72 72 122 1 1 40 40 40 157 10 10 209 8 8 222 8 8 195 41 41 223 21 21 180 11 11 255 68 68 162 28 28 194 11 11 232 25 25 131 1 1 241 32 32 246 246 246 49 49 49 224 44 44 208 2 2 227 227 227 239 239 239 239 46 46 162 20 20 245 33 33 219 219 219 238 29 29 237 37 37 171 29 29 36 46 46 250 68 68 147 16 16 182 26 26 187 187 187 24 1 1 185 32 32 229 24 24 232 33 33 150 150 150 122 12 12 229 17 17 204 27 27 242 52 52 213 2 2 200 15 15 191 191 191 217 43 43 217 12 12 115 10 10 140 16 16 200 28 28 202 6 6 215 13 13 182 41 41 57 46 46 40 46 46 233 40 40 252 70 70 173 40 40 226 28 28 46 54 54 202 22 22 203 18 18 245 72 72 191 17 17 200 37 37 10 0 0 50 52 52 252 74 74 252 72 72 247 38 38 160 40 40 231 14 14 252 68 68 200 10 10 15 15 15 211 47 47 254 254 254 253 76 76 23 23 23 237 69 69 7 7 7 144 7 7 196 8 7 32 32 32 59 59 59 90 93 93 67 67 67 70 28 28 50 56 56 232 15 16 208 4 4 237 35 35 220 12 11 232 20 20 223 62 62 0 0 0 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@L@@0@C8AO C?0O<C?>G?0??#?>C?0_?@O@@L@b') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   650
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   651
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   652
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   653
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   654
bug24x24Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   655
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   656
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   657
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   658
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   659
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   660
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   661
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   662
     self bug24x24Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   663
     ImageEditor openOnClass:self andSelector:#bug24x24Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   664
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   665
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   666
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   667
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   668
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   669
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   670
        constantNamed:'GenericToolbarIconLibrary class bug24x24Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   671
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   672
??????????????????????????????????????????????????>6???????????????????????1???????=????????????????????????<4+????=????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   673
????????????????????O"_???> ??????????????????????????7.?3;.?????????????????????????_4$?#K=,_????????????????7???=/?RP$
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   674
IBP$?_?????=????????MX3=???=L#H2L#H2?_7?XQW.???????????=?_7=W5=_W5=_W?7=O/7?????????????#O4''@0LC@0LC@?7=????????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   675
?_6 PTEAPTEAPSW=?????????????_7=/4R[6=48NC!!"TY-M?_7=XO???????3H0L29%>JK/\2Z",FUDH#YJ????????????L9-$3N>%%ZW/YL!!D????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   676
????GA1W77W7V*<7M3\R>0%DAH0\D_???????_7=?_@M C_W8PTP-05MO/7=V???????B!!X4MX>WRW7WFPVZ"?//?1XV??????????<XI?7]HEXYFT]Y_)K=
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   677
<Q_???????????4XO!!?DJRU*Q9P%QSL5?U<-?????????3T5???=F$  EB@?L37?G3;=????????????????O_7D3,7=??????????????????????????<(
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   678
[RO?????????????????????????????????????????????') ; colorMapFromArray:#[205 205 205 227 35 35 106 106 106 98 98 98 135 135 135 163 34 34 101 5 5 124 124 124 48 2 2 227 11 11 173 173 173 218 54 54 241 241 241 235 19 19 225 225 225 219 18 18 245 58 58 214 214 214 249 46 46 90 90 90 254 61 61 36 36 36 176 176 176 233 233 233 114 114 114 255 78 78 212 33 33 230 57 57 61 61 61 94 94 94 76 76 76 19 19 19 255 57 57 161 161 161 83 83 83 217 217 217 249 249 249 255 65 65 139 2 2 27 27 27 169 169 169 253 53 53 210 28 28 251 251 251 154 154 154 117 117 117 195 1 1 245 245 245 145 145 145 218 5 5 230 230 230 69 2 2 181 181 181 11 11 11 141 141 141 249 61 61 205 21 21 165 165 165 157 157 157 241 28 28 223 223 223 109 109 109 2 2 2 245 45 45 146 0 0 69 69 69 137 137 137 140 40 40 188 1 1 206 24 24 219 33 33 255 76 76 249 49 49 249 56 56 236 236 236 121 121 121 248 53 53 171 1 1 111 40 40 237 41 41 178 21 21 205 16 16 129 129 129 163 1 1 155 18 18 85 4 4 243 68 68 73 73 73 45 45 45 202 51 51 241 40 40 86 86 86 114 1 1 210 4 4 246 41 41 148 148 148 189 189 189 209 209 209 210 17 17 158 28 28 213 5 5 205 1 1 53 53 53 217 9 9 69 40 40 187 10 10 255 74 74 218 28 28 146 11 11 65 65 65 232 37 37 101 101 101 196 26 26 245 53 53 188 26 26 213 10 10 184 184 184 206 5 5 249 65 65 172 21 21 206 34 34 195 195 195 237 32 32 131 12 12 233 29 29 179 36 36 241 37 37 139 13 13 245 49 49 180 1 1 168 37 37 198 198 198 202 202 202 228 21 21 206 10 10 206 29 29 229 30 30 255 80 80 188 20 20 245 37 37 57 57 57 252 50 50 87 42 42 172 10 10 209 13 13 155 4 4 164 11 11 242 44 44 255 70 70 225 25 25 222 14 14 237 24 24 240 49 49 205 13 13 202 44 44 201 0 0 225 17 17 186 42 42 255 72 72 122 1 1 40 40 40 157 10 10 209 8 8 222 8 8 195 41 41 223 21 21 180 11 11 255 68 68 162 28 28 194 11 11 232 25 25 131 1 1 241 32 32 246 246 246 49 49 49 224 44 44 208 2 2 227 227 227 239 239 239 239 46 46 162 20 20 245 33 33 219 219 219 238 29 29 237 37 37 171 29 29 36 46 46 250 68 68 147 16 16 182 26 26 187 187 187 24 1 1 185 32 32 229 24 24 232 33 33 150 150 150 122 12 12 229 17 17 204 27 27 242 52 52 213 2 2 200 15 15 191 191 191 217 43 43 217 12 12 115 10 10 140 16 16 200 28 28 202 6 6 215 13 13 182 41 41 57 46 46 40 46 46 233 40 40 252 70 70 173 40 40 226 28 28 46 54 54 202 22 22 203 18 18 245 72 72 191 17 17 200 37 37 10 0 0 50 52 52 252 74 74 252 72 72 247 38 38 160 40 40 231 14 14 252 68 68 200 10 10 15 15 15 211 47 47 254 254 254 253 76 76 23 23 23 237 69 69 7 7 7 144 7 7 196 8 7 32 32 32 59 59 59 90 93 93 67 67 67 70 28 28 50 56 56 232 15 16 208 4 4 237 35 35 220 12 11 232 20 20 223 62 62 0 0 0 255 255 255 255 255 255]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@H@@HH@@FH@@FH@@CX@@G<@BO<HGO>8A??0@??@@??@G??<C??8@??@G??<G??<G??XA??0C??8CO>8@G8@@A0@@@@@') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   679
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   680
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   681
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   682
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   683
bug32x32Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   684
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   685
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   686
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   687
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   688
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   689
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   690
     self bug3232Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   691
     ImageEditor openOnClass:self andSelector:#bug3232Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   692
     Icon flushCachedIcons"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   693
    
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   694
    ^ Icon constantNamed:'GenericToolbarIconLibrary class bug3232Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   695
        ifAbsentPut:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   696
            (Depth8Image new)
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   697
                width:32;
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   698
                height:32;
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   699
                photometric:(#palette);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   700
                bitsPerSample:(#( 8 ));
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   701
                samplesPerPixel:((1));
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   702
                bits:(ByteArray 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   703
                            fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   704
??????????????????????????????????????????????????????????????????>6@/?????????????????????????????1H_????????4-????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   705
???????????????????????=?_??????O!!???????????????????????????????3W3R/?????=I????????????????????????????????38''?????:C?
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   706
??????????????????????????????????7.??<>;/???????????????????????????????????_7=?_7=????????????????????????????????[?7=
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   707
IO;>L/7=,_?????????????????????=?????6?=?RP$IBP$IO7=???????=????????????MX3=?????_42L#H2L#H2L/7=??=!!E^8Q????????????O.9K
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   708
?_7=@G%9^W%9^W%9JO7=O%K=O/???????????????_7=?_5_W5=_W5=_W5=_?_7=O/7??????????????????83=I0LC@0LC@0LC@0O=?SK?????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   709
?????????_6 PTEAPTEAPTEAPSW=M_??????????????JC(SI?7= S#WP49(ZF"NS$N$]UO=?QU/@6G???????<-?_7=?[=D&5G[7S 8NC!!"65F[S_7=?_4U
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   710
XO??????????L#C4L29%,O"";7M3I*K8,FUD?RH6R/????????????????<3&6Q''3N>%%YV%;6]$2DS=????????????????????(@#8(92*/KN3,4=T0YZ#
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   711
K/40?????????????0P\GE]X77W7*%*/M3\7M1K9>0%D?PRLGB\Q????????<_7=?S;=<@5> C_W8^DEDC>7CT7=O/7=<U/?????????B!!X4?3VO%59I_]\Y
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   712
FPVZSH/;;8O?E!!Y9????????????????I<SAD#^BFX&IFVMI86H3H/??????????????????FB4''?]5^HEXY"Q%GVR%>$/4^<Q_???????????????4X?S8_
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   713
1DX)IV)GQ9P%D$T3MS;=W27?????????????MST!!???=1A)HHBTTHC?FL37??1<>?_?????????????????????=A''KUO9M.]0# ?????1_?????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   714
??????????<=?\SN3,7=H???????????????????????????????????JFY-H???????????????????????????????????????????????????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   715
?????????????????????????????????????????????0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   716
@@@@@@@@@@@@');
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   717
                colorMapFromArray:#[ 205 205 205 227 35 35 106 106 106 98 98 98 135 135 135 163 34 34 101 5 5 124 124 124 48 2 2 227 11 11 173 173 173 218 54 54 241 241 241 235 19 19 225 225 225 219 18 18 245 58 58 214 214 214 249 46 46 90 90 90 254 61 61 36 36 36 176 176 176 233 233 233 114 114 114 255 78 78 212 33 33 230 57 57 61 61 61 94 94 94 76 76 76 19 19 19 255 57 57 161 161 161 83 83 83 217 217 217 249 249 249 255 65 65 139 2 2 27 27 27 169 169 169 253 53 53 210 28 28 251 251 251 154 154 154 117 117 117 195 1 1 245 245 245 145 145 145 218 5 5 230 230 230 69 2 2 181 181 181 11 11 11 141 141 141 249 61 61 205 21 21 165 165 165 157 157 157 241 28 28 223 223 223 109 109 109 2 2 2 245 45 45 146 0 0 69 69 69 137 137 137 140 40 40 188 1 1 206 24 24 219 33 33 255 76 76 249 49 49 249 56 56 236 236 236 121 121 121 248 53 53 171 1 1 111 40 40 237 41 41 178 21 21 205 16 16 129 129 129 163 1 1 155 18 18 85 4 4 243 68 68 73 73 73 45 45 45 202 51 51 241 40 40 86 86 86 114 1 1 210 4 4 246 41 41 148 148 148 189 189 189 209 209 209 210 17 17 158 28 28 213 5 5 205 1 1 53 53 53 217 9 9 69 40 40 187 10 10 255 74 74 218 28 28 146 11 11 65 65 65 232 37 37 101 101 101 196 26 26 245 53 53 188 26 26 213 10 10 184 184 184 206 5 5 249 65 65 172 21 21 206 34 34 195 195 195 237 32 32 131 12 12 233 29 29 179 36 36 241 37 37 139 13 13 245 49 49 180 1 1 168 37 37 198 198 198 202 202 202 228 21 21 206 10 10 206 29 29 229 30 30 255 80 80 188 20 20 245 37 37 57 57 57 252 50 50 87 42 42 172 10 10 209 13 13 155 4 4 164 11 11 242 44 44 255 70 70 225 25 25 222 14 14 237 24 24 240 49 49 205 13 13 202 44 44 201 0 0 225 17 17 186 42 42 255 72 72 122 1 1 40 40 40 157 10 10 209 8 8 222 8 8 195 41 41 223 21 21 180 11 11 255 68 68 162 28 28 194 11 11 232 25 25 131 1 1 241 32 32 246 246 246 49 49 49 224 44 44 208 2 2 227 227 227 239 239 239 239 46 46 162 20 20 245 33 33 219 219 219 238 29 29 237 37 37 171 29 29 36 46 46 250 68 68 147 16 16 182 26 26 187 187 187 24 1 1 185 32 32 229 24 24 232 33 33 150 150 150 122 12 12 229 17 17 204 27 27 242 52 52 213 2 2 200 15 15 191 191 191 217 43 43 217 12 12 115 10 10 140 16 16 200 28 28 202 6 6 215 13 13 182 41 41 57 46 46 40 46 46 233 40 40 252 70 70 173 40 40 226 28 28 46 54 54 202 22 22 203 18 18 245 72 72 191 17 17 200 37 37 10 0 0 50 52 52 252 74 74 252 72 72 247 38 38 160 40 40 231 14 14 252 68 68 200 10 10 15 15 15 211 47 47 254 254 254 253 76 76 23 23 23 237 69 69 7 7 7 144 7 7 196 8 7 32 32 32 59 59 59 90 93 93 67 67 67 70 28 28 50 56 56 232 15 16 208 4 4 237 35 35 220 12 11 232 20 20 223 62 62 0 0 0 255 255 255 255 255 255 ];
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   718
                mask:((ImageMask new)
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   719
                            width:32;
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   720
                            height:32;
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   721
                            photometric:(#blackIs0);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   722
                            bitsPerSample:(#[ 1 ]);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   723
                            samplesPerPixel:((1));
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   724
                            bits:(ByteArray 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   725
                                        fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   726
@@@@@@@@L@@@LC@@@A 0@@@\L@@@CB@@@@Y @@@G8@@@G? @AC?8H@8??O@G??? @???0@C??0@@??<@G???>A???? G??? @O??@@G??8@_???8G???>@;?
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   727
?7@@??<@@???0@_??>@GO?3 @A?8P@@O<@@@@<@@@@@@@@@@@@@b');
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   728
                            yourself);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   729
                yourself
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   730
        ]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   731
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   732
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   733
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   734
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   735
lint16x16Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   736
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   737
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   738
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   739
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   740
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   741
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   742
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   743
     self lint16x16Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   744
     ImageEditor openOnClass:self andSelector:#lint16x16Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   745
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   746
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   747
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   748
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   749
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   750
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   751
        constantNamed:'GenericToolbarIconLibrary class lint16x16Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   752
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   753
??????????????????????????????????????????????????<4[_??????????????????A4W??????????????????2<A()BG??????????<A??<A1_;>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   754
@XS??????????3<)-;^76.Z5A0O???????<P@W!!8>-3J<0+??????0\JI1,;7^?57-[;''T????<JS0P"PN3'':-V>8L??????V5@''G57.1,!!#X-''R_O???1(R
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   755
@RMW:Y*KY6+7*RW??????3P*ZU[;.:#!!/:7???????<A@6AV2?S:9+>5??????????< BC &?????;?Z??????????<XU_?????X<P@a') ; colorMapFromArray:#[0 1 0 0 2 0 1 4 0 3 6 2 30 1 0 6 9 5 34 2 2 10 12 8 43 4 2 13 15 12 15 17 13 77 0 0 16 18 15 35 14 12 17 19 16 67 6 1 19 20 18 75 7 10 21 23 20 86 9 4 25 27 24 111 4 7 103 7 10 96 10 12 32 29 28 29 30 28 31 33 30 153 2 0 33 35 33 35 36 34 110 16 16 173 0 1 36 38 35 41 37 36 165 4 0 155 7 7 128 15 14 39 41 39 157 12 16 51 42 42 207 0 4 43 45 42 58 41 39 141 19 15 199 4 0 210 3 0 221 1 4 48 49 47 231 0 12 211 7 8 172 19 10 172 19 18 52 54 51 53 55 53 234 5 23 59 54 53 176 24 21 56 57 55 57 59 56 204 19 22 195 22 24 103 47 48 227 16 9 60 61 59 198 25 19 216 20 21 61 63 60 119 48 45 228 20 20 63 65 62 211 30 27 68 69 67 69 71 68 212 32 34 242 25 29 72 74 71 74 76 74 191 45 50 245 31 38 76 78 75 77 79 76 79 80 78 138 66 66 248 36 40 240 41 43 83 85 82 216 50 52 241 43 50 195 58 61 86 88 85 244 46 46 87 89 86 89 91 88 214 58 58 193 65 67 92 93 91 248 51 49 109 90 87 185 68 87 194 67 80 87 95 125 250 54 57 173 74 96 202 67 84 159 78 103 253 56 52 188 72 90 87 99 135 129 89 121 99 101 98 73 104 148 255 59 60 159 83 106 175 81 94 94 102 132 187 78 98 215 71 85 255 61 67 169 84 104 251 66 66 104 106 103 90 106 147 151 92 119 200 81 93 107 108 106 140 99 131 162 94 119 255 72 76 144 100 128 96 112 153 228 80 83 159 97 120 111 113 110 191 90 111 206 87 104 113 115 112 87 118 163 115 117 114 83 122 166 179 100 117 118 120 117 199 99 101 231 91 88 138 113 147 120 122 119 196 101 119 123 125 122 115 123 167 213 100 113 119 123 162 180 109 128 127 129 126 208 108 109 115 131 173 185 115 140 158 122 154 173 119 144 131 133 130 130 130 163 178 122 124 181 119 147 106 139 178 136 138 135 120 139 175 126 138 175 204 121 132 132 139 172 113 146 186 136 143 176 144 146 143 121 149 184 153 142 173 135 150 181 148 150 147 125 153 188 130 153 182 179 140 167 150 152 149 205 136 148 181 145 146 136 159 189 155 157 154 140 163 193 159 161 158 161 163 160 143 166 196 162 164 161 148 167 192 164 166 163 165 165 187 197 159 173 167 169 166 152 171 196 191 163 180 157 172 191 169 171 168 216 159 166 171 173 170 208 163 179 187 169 190 217 162 175 174 176 173 159 178 203 186 173 174 207 167 175 163 178 198 213 166 176 179 181 178 198 176 192 169 185 204 183 185 182 216 175 184 209 177 189 212 180 192 204 183 198 208 183 193 188 190 187 180 192 206 194 196 193 215 191 201 187 199 213 204 198 197 211 196 210 199 201 198 190 202 216 191 203 217 201 202 212 202 204 201 208 203 201 219 201 210 205 207 203 217 203 217 206 208 205 213 207 206 223 205 214 203 211 220 211 213 210 211 212 222 214 216 213 221 215 227 217 219 216 219 221 218 228 218 224 217 222 225 221 223 220 231 221 227 216 225 233 220 226 228 224 226 223 221 229 238 231 233 230 228 234 236 233 235 232 235 238 234 249 251 248 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@L@@0@C8AO0C?0O>C?>O?0??#?>C?0O?@OC@LLb') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   756
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   757
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   758
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   759
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   760
lint24x24Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   761
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   762
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   763
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   764
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   765
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   766
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   767
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   768
     self lint24x24Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   769
     ImageEditor openOnClass:self andSelector:#lint24x24Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   770
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   771
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   772
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   773
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   774
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   775
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   776
        constantNamed:'GenericToolbarIconLibrary class lint24x24Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   777
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   778
??????????????????????????????????????????????????????????????????????????=_W?????< @???????????????????????MF7???<4????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   779
????????????????????A4W???<L?????????????????????????2AG?4HY????????????????????????K0E[()@J!!????????????????0G?????@\W>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   780
?/;0@XS???<Z????????JUEK??</0?3<?O3<F G??0)H??????????<GO2$A-;^7-=+,9+T]A0MU????????????D@DG^G!!<>-262/O1B/??????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   781
@PDPR4/I):+J+8+Q,_??????????A0(]I1,,N=7J;?W27-ZO>94NS???????B$=QABH(PN2#9>+%5[:@8L>D????????????A!!<-S_BU6=/W3)Y:.]??????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   782
????V5AEI1<>W^:$1,"2X6I(6]IP_O??????F!!HN@RL0U>&6&(-1Y6)(=:$RI_??????N%%\@1UDXKO;(HM6^7M,<G!!Y#O??????????MB(2ZUZX>;.&*NG:
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   783
/:6D??????????<)@PLSXEY?2?S<>.Y-/;V-?????????1$A??<GRU)/]8JMT"_?/;>5#O??????????????H@ +NBXQ??????>:/=*L??????????????<9
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   784
FEU_????????6OF5????????????????????????????-]K?') ; colorMapFromArray:#[0 1 0 0 2 0 1 4 0 3 6 2 30 1 0 6 9 5 34 2 2 10 12 8 43 4 2 13 15 12 15 17 13 77 0 0 16 18 15 35 14 12 17 19 16 67 6 1 19 20 18 75 7 10 21 23 20 86 9 4 25 27 24 111 4 7 103 7 10 96 10 12 32 29 28 29 30 28 31 33 30 153 2 0 33 35 33 35 36 34 110 16 16 173 0 1 36 38 35 41 37 36 165 4 0 155 7 7 128 15 14 39 41 39 157 12 16 51 42 42 207 0 4 43 45 42 58 41 39 141 19 15 199 4 0 210 3 0 221 1 4 48 49 47 231 0 12 211 7 8 172 19 10 172 19 18 52 54 51 53 55 53 234 5 23 59 54 53 176 24 21 56 57 55 57 59 56 204 19 22 195 22 24 103 47 48 227 16 9 60 61 59 198 25 19 216 20 21 61 63 60 119 48 45 228 20 20 63 65 62 211 30 27 68 69 67 69 71 68 212 32 34 242 25 29 72 74 71 74 76 74 191 45 50 245 31 38 76 78 75 77 79 76 79 80 78 138 66 66 248 36 40 240 41 43 83 85 82 216 50 52 241 43 50 195 58 61 86 88 85 244 46 46 87 89 86 89 91 88 214 58 58 193 65 67 92 93 91 248 51 49 109 90 87 185 68 87 194 67 80 87 95 125 250 54 57 173 74 96 202 67 84 159 78 103 253 56 52 188 72 90 87 99 135 129 89 121 99 101 98 73 104 148 255 59 60 159 83 106 175 81 94 94 102 132 187 78 98 215 71 85 255 61 67 169 84 104 251 66 66 104 106 103 90 106 147 151 92 119 200 81 93 107 108 106 140 99 131 162 94 119 255 72 76 144 100 128 96 112 153 228 80 83 159 97 120 111 113 110 191 90 111 206 87 104 113 115 112 87 118 163 115 117 114 83 122 166 179 100 117 118 120 117 199 99 101 231 91 88 138 113 147 120 122 119 196 101 119 123 125 122 115 123 167 213 100 113 119 123 162 180 109 128 127 129 126 208 108 109 115 131 173 185 115 140 158 122 154 173 119 144 131 133 130 130 130 163 178 122 124 181 119 147 106 139 178 136 138 135 120 139 175 126 138 175 204 121 132 132 139 172 113 146 186 136 143 176 144 146 143 121 149 184 153 142 173 135 150 181 148 150 147 125 153 188 130 153 182 179 140 167 150 152 149 205 136 148 181 145 146 136 159 189 155 157 154 140 163 193 159 161 158 161 163 160 143 166 196 162 164 161 148 167 192 164 166 163 165 165 187 197 159 173 167 169 166 152 171 196 191 163 180 157 172 191 169 171 168 216 159 166 171 173 170 208 163 179 187 169 190 217 162 175 174 176 173 159 178 203 186 173 174 207 167 175 163 178 198 213 166 176 179 181 178 198 176 192 169 185 204 183 185 182 216 175 184 209 177 189 212 180 192 204 183 198 208 183 193 188 190 187 180 192 206 194 196 193 215 191 201 187 199 213 204 198 197 211 196 210 199 201 198 190 202 216 191 203 217 201 202 212 202 204 201 208 203 201 219 201 210 205 207 203 217 203 217 206 208 205 213 207 206 223 205 214 203 211 220 211 213 210 211 212 222 214 216 213 221 215 227 217 219 216 219 221 218 228 218 224 217 222 225 221 223 220 231 221 227 216 225 233 220 226 228 224 226 223 221 229 238 231 233 230 228 234 236 233 235 232 235 238 234 249 251 248 255 255 255]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@LL@@FH@@FH@@CX@@G<@BG>HGO>XA??8@?? @?? G??<G??8@??0G??<G??<G??<@??8A??8CO><@G8O@A8G@@@F') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   785
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   786
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   787
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   788
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   789
lint32x32Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   790
    "This resource specification was automatically generated
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   791
     by the ImageEditor of ST/X."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   792
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   793
    "Do not manually edit this!! If it is corrupted,
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   794
     the ImageEditor may not be able to read the specification."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   795
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   796
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   797
     self lint32x32Icon inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   798
     ImageEditor openOnClass:self andSelector:#lint32x32Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   799
     Icon flushCachedIcons
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   800
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   801
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   802
    <resource: #image>
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   803
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   804
    ^Icon
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   805
        constantNamed:'GenericToolbarIconLibrary class lint32x32Icon'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   806
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   807
????????????????????????????????????????????????????????????????????!!O????????????????????????????=_JU???????2@4@???????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   808
??????????????????????<AT_??????@Q*??????????????????????????????4H4[_????<4O????????????????????????????????0]E?????01K
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   809
?????????????????????????????????2AG??=BFX_?????????????????????????????????QQ$A@PDR?????????????????????????????????2<A
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   810
V96"$@(C!!?????????????????????<A??????<R@\W>?/;><CPA!!O????<Z????????????JUEK????K0GC?O3<?O3<>A(A????B$"G????????????@SQG
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   811
V0(ARNO#8>O#8>O_+PD9NS(%@P_?????????????A0\?JPFW-;^7-;_Z;OG&-Q5EA0MU????????????????QQ@AA718^G2?>-26+,+3<W0J????????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   812
????????@PDPR4-K2_^''*,+M+8+Q>+G??????????????4IHUV4)B19COVG:(\K9=.7"/XGY;E=HQZ''???????=\A0(]P"\[KC,;7\*+;?W2:-;V#8#;''P8%
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   813
S?????????<JS5D)ABH(LTC,(<_'':.W[5[:@^^CO!!@G???????????????<FG241S_BU4M/[5=ON%'')2.]???????????????????0P_K"9^=IOA5MOL1JU&
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   814
\FR47?????????????=[TDT:I1<>M%7.)KCF2KJTX6I(Z=''RTD-<????????EA(RC DAH3AJU>&6&9*K\WQ''Z&!!.=:$RMBW?????????N%%\C LUQD9 ,?.Y
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   815
(HM6!!''-3[LC0^E%_#O??????????????!!@=AS&UX9N.Y''G:Q!!W6,?]"L?????????????????4,4J#INZUZX9/.;)):(8_+0/:6D??????????????<)GPDC
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   816
D4Y U''>N2?S<?_+&[\N?-Z6I????????????FPD)??<GE$%Z[7U7 (6_T"_??;>?-Z6L????????????Q?????<AE31TXFAZRRPM?????;2<.J6R????????
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   817
??????????< BB,3NBXQM????????;*</=*L????????????????????NRDXUU???????????;#X<[W??????????????????????????????????????;WR
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   818
?????????????????????????????????????????????0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   819
@@@@@@@@@@@@') ; colorMapFromArray:#[0 1 0 0 2 0 1 4 0 3 6 2 30 1 0 6 9 5 34 2 2 10 12 8 43 4 2 13 15 12 15 17 13 77 0 0 16 18 15 35 14 12 17 19 16 67 6 1 19 20 18 75 7 10 21 23 20 86 9 4 25 27 24 111 4 7 103 7 10 96 10 12 32 29 28 29 30 28 31 33 30 153 2 0 33 35 33 35 36 34 110 16 16 173 0 1 36 38 35 41 37 36 165 4 0 155 7 7 128 15 14 39 41 39 157 12 16 51 42 42 207 0 4 43 45 42 58 41 39 141 19 15 199 4 0 210 3 0 221 1 4 48 49 47 231 0 12 211 7 8 172 19 10 172 19 18 52 54 51 53 55 53 234 5 23 59 54 53 176 24 21 56 57 55 57 59 56 204 19 22 195 22 24 103 47 48 227 16 9 60 61 59 198 25 19 216 20 21 61 63 60 119 48 45 228 20 20 63 65 62 211 30 27 68 69 67 69 71 68 212 32 34 242 25 29 72 74 71 74 76 74 191 45 50 245 31 38 76 78 75 77 79 76 79 80 78 138 66 66 248 36 40 240 41 43 83 85 82 216 50 52 241 43 50 195 58 61 86 88 85 244 46 46 87 89 86 89 91 88 214 58 58 193 65 67 92 93 91 248 51 49 109 90 87 185 68 87 194 67 80 87 95 125 250 54 57 173 74 96 202 67 84 159 78 103 253 56 52 188 72 90 87 99 135 129 89 121 99 101 98 73 104 148 255 59 60 159 83 106 175 81 94 94 102 132 187 78 98 215 71 85 255 61 67 169 84 104 251 66 66 104 106 103 90 106 147 151 92 119 200 81 93 107 108 106 140 99 131 162 94 119 255 72 76 144 100 128 96 112 153 228 80 83 159 97 120 111 113 110 191 90 111 206 87 104 113 115 112 87 118 163 115 117 114 83 122 166 179 100 117 118 120 117 199 99 101 231 91 88 138 113 147 120 122 119 196 101 119 123 125 122 115 123 167 213 100 113 119 123 162 180 109 128 127 129 126 208 108 109 115 131 173 185 115 140 158 122 154 173 119 144 131 133 130 130 130 163 178 122 124 181 119 147 106 139 178 136 138 135 120 139 175 126 138 175 204 121 132 132 139 172 113 146 186 136 143 176 144 146 143 121 149 184 153 142 173 135 150 181 148 150 147 125 153 188 130 153 182 179 140 167 150 152 149 205 136 148 181 145 146 136 159 189 155 157 154 140 163 193 159 161 158 161 163 160 143 166 196 162 164 161 148 167 192 164 166 163 165 165 187 197 159 173 167 169 166 152 171 196 191 163 180 157 172 191 169 171 168 216 159 166 171 173 170 208 163 179 187 169 190 217 162 175 174 176 173 159 178 203 186 173 174 207 167 175 163 178 198 213 166 176 179 181 178 198 176 192 169 185 204 183 185 182 216 175 184 209 177 189 212 180 192 204 183 198 208 183 193 188 190 187 180 192 206 194 196 193 215 191 201 187 199 213 204 198 197 211 196 210 199 201 198 190 202 216 191 203 217 201 202 212 202 204 201 208 203 201 219 201 210 205 207 203 217 203 217 206 208 205 213 207 206 223 205 214 203 211 220 211 213 210 211 212 222 214 216 213 221 215 227 217 219 216 219 221 218 228 218 224 217 222 225 221 223 220 231 221 227 216 225 233 220 226 228 224 226 223 221 229 238 231 233 230 228 234 236 233 235 232 235 238 234 249 251 248 255 255 255]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   820
@@@@@@@@D@@@NC @@A 8@@@\L@@@CC@@@@Y0@@@G8@@@C? @AA?<H@8??G@G???0@???8@G??8@@??>@C???>A???? O???0@O??0@C??<@O???8G???>@??
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   821
?? @???@@_??8@O???@GO?38@!!?8_@@O<C8@@>@^@@@@C@@@@@@b') ; yourself); yourself]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   822
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   823
8839
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   824
!Image methodsFor:'inspecting'!
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   825
10807
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   826
inspector2TabImage
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   827
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   828
    ^self newInspector2Tab
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   829
        label: 'Image';
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   830
        priority: 50;
10839
bcd731f66877 image inspector scrollable
Claus Gittinger <cg@exept.de>
parents: 10816
diff changeset
   831
        view: ((HVScrollableView for:ImageView) image: self; yourself)
10807
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   832
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   833
    "Created: / 11-10-2011 / 17:12:01 / cg"
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   834
! !
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   835
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   836
!Image methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   837
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   838
inspector2Tabs
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   839
    ^ #( inspector2TabForBasicInspect inspector2TabImage )
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   840
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   841
    "Created: / 11-10-2011 / 17:11:21 / cg"
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   842
! !
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   843
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   844
!Image methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 10795
diff changeset
   845
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   846
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   847
    "redefined to launch an ImageInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   848
     (instead of the default InspectorView)."
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   849
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   850
    (width notNil and:[height notNil]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   851
	^ ImageInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   852
    ].
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   853
    ^ super inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   854
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   855
    "Modified: 10.6.1996 / 18:23:55 / cg"
8839
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   856
! !
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   857
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   858
!Integer methodsFor:'inspecting'!
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   859
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   860
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   861
    "extra (pseudo instvar) entries to be shown in an inspector."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   862
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   863
    ^ Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   864
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   865
	add:'-hexadecimal' -> [ self radixPrintStringRadix:16 ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   866
	add:'-octal' -> [ self radixPrintStringRadix:8 ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   867
	add:'-binary' -> [ self radixPrintStringRadix:2 ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   868
	yourself
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   869
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   870
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   871
     123 inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   872
    "
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   873
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   874
    "Created: / 18-09-2006 / 21:22:46 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   875
    "Modified: / 06-10-2006 / 13:57:28 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   876
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   877
11897
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   878
!Iterator methodsFor:'inspecting'!
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   879
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   880
inspectorValueStringInListFor:anInspector
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   881
    "returns a string to be shown in the inspector's list. 
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   882
     Redefined to avoid calling the iterator"
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   883
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   884
    ^ self classNameWithArticle
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   885
! !
01e18436daed iterator in inspector
Claus Gittinger <cg@exept.de>
parents: 11891
diff changeset
   886
11450
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   887
!LimitedPrecisionReal methodsFor:'inspecting'!
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   888
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   889
inspectorExtraAttributes
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   890
    "extra (pseudo instvar) entries to be shown in an inspector."
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   891
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   892
    ^ Dictionary new
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   893
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   894
        add:'-hex' ->
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   895
            [
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   896
                String
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   897
                    streamContents:[:s |
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   898
                        self byteSize to:1 by:-1 do:[:i |
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   899
                            (((self basicAt:i) printStringRadix:16) paddedTo:2 with:$0)
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   900
                                printOn:s
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   901
                        ]
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   902
                    ]
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   903
            ];
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   904
        yourself
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   905
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   906
    "Created: / 20-03-2012 / 22:34:46 / cg"
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   907
! !
e0692491f820 float inspecting hex bytes
Claus Gittinger <cg@exept.de>
parents: 11401
diff changeset
   908
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   909
!MenuView methodsFor:'accessing-behavior'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   910
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   911
shortKeys
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   912
    ^ shortKeys
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   913
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   914
    "Created: / 18-10-2008 / 19:16:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   915
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   916
8839
792607726eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8838
diff changeset
   917
!Method methodsFor:'inspecting'!
7735
a85329ee3b3a todo notification
Claus Gittinger <cg@exept.de>
parents: 7703
diff changeset
   918
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   919
inspectorExtraAttributes
8677
Claus Gittinger <cg@exept.de>
parents: 8417
diff changeset
   920
    "extra (pseudo instvar) entries to be shown in an inspector."
Claus Gittinger <cg@exept.de>
parents: 8417
diff changeset
   921
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   922
    ^ Dictionary new
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   923
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   924
	add:'-code' -> [ String streamContents:[:s | self decompileTo:s] ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   925
	add:'-source' -> [ self source ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   926
	yourself
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   927
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   928
    "
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   929
     (Method compiledMethodAt:#inspectorExtraAttributes) inspect
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   930
    "
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   931
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   932
    "Created: / 18-09-2006 / 21:34:01 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   933
    "Modified: / 06-10-2006 / 13:57:33 / cg"
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   934
! !
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   935
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   936
!Method methodsFor:'printing & storing'!
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
   937
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   938
printStringForBrowserWithSelector:selector inClass:aClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   939
    "return a printString to represent myself to the user in a browser.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   940
     Defined here to allow for browsers to deal with nonStandard pseudoMethods"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   941
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   942
    |s privInfo moreInfo p info n cls ns currentChangeSet isInChangeSet mthdPackage
12931
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   943
     userPreferences shownSelector suppressPackage timeRounded shadowsOrNot overAllCount|
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   944
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   945
    moreInfo := ''.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   946
    privInfo := ''.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   947
    userPreferences := UserPreferences current.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   948
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   949
    ns := self nameSpace.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   950
    (ns notNil and:[ns isNameSpace]) ifTrue:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   951
        moreInfo := moreInfo , 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   952
            ((' < %1 >' bindWith: ns name) asText emphasisAllAdd:
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   953
                userPreferences emphasisForNamespacedCode)
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   954
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   955
    ].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
   956
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   957
    self isWrapped ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   958
        (MessageTracer isCounting:self) ifTrue:[
12931
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   959
            (MessageTracer isCountingByReceiverClass:self) ifTrue:[
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   960
                overAllCount := (MessageTracer executionCountOfMethod:self).
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   961
                moreInfo := moreInfo , (' (cnt: %1' bindWith:overAllCount printString allBold).
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   962
                overAllCount ~~ 0 ifTrue:[
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   963
                    (MessageTracer executionCountsByReceiverClassOfMethod:self) keysAndValuesDo:[:cls :cnt |
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   964
                        |clsName percentage|
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   965
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   966
                        clsName := cls name.
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   967
                        percentage := ((cnt / overAllCount) * 100) rounded.
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   968
                        moreInfo := moreInfo , ('; %1->%2%%' bindWith:clsName with:percentage).
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   969
                    ].
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   970
                ].
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   971
                moreInfo := moreInfo , ')'.
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   972
            ] ifFalse:[
12931
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   973
                (MessageTracer isCountingMemoryUsage:self) ifTrue:[
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   974
                    moreInfo := moreInfo , (' (mem: %1 bytes avg)' bindWith:(MessageTracer memoryUsageOfMethod:self) printString allBold).
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   975
                ] ifFalse:[
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   976
                    moreInfo := moreInfo , (' (cnt: %1)' bindWith:(MessageTracer executionCountOfMethod:self) printString allBold).
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   977
                ]
740a3b5712cb class: Method
Claus Gittinger <cg@exept.de>
parents: 12852
diff changeset
   978
            ].
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   979
        ] ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   980
            (MessageTracer isTiming:self) ifTrue:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   981
                info := MessageTracer executionTimesOfMethod:self.
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   982
                ((n := info count) == 0) ifTrue:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   983
                    moreInfo := moreInfo , (' (cnt: %1)' bindWith:n)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   984
                ] ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   985
                    timeRounded := [:millis |
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   986
                        |rnd|
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   987
                        rnd := (millis > 100)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   988
                                 ifTrue:[ 1 ]
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   989
                                 ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   990
                                     (millis > 10)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   991
                                        ifTrue:[ 0.1 ]
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   992
                                        ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   993
                                            (millis > 1)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   994
                                                ifTrue:[ 0.01 ]
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   995
                                                ifFalse:[ 0.001 ]]].
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   996
                        millis roundTo:rnd
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   997
                    ].
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
   998
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
   999
                    (n == 1 or:[ info avgTimeRounded = info minTimeRounded  ]) ifTrue:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1000
                        moreInfo := moreInfo ,
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1001
                                    (' (t: %1ms cnt: %2)'
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1002
                                        bindWith:((timeRounded value:info avgTimeRounded) printString allBold)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1003
                                        with:n)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1004
                    ] ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1005
                        moreInfo := moreInfo ,
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1006
                                    (' (avg: %1ms min: %2 max: %3 cnt: %4)'
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1007
                                        bindWith:((timeRounded value:info avgTimeRounded) printString allBold)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1008
                                        with:((timeRounded value:info minTimeRounded) printString)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1009
                                        with:((timeRounded value:info maxTimeRounded) printString)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1010
                                        with:n)
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1011
                    ].
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1012
                ].
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1013
            ] ifFalse:[
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1014
                moreInfo := ' !!'
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1015
            ]
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1016
        ].
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1017
    ].
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1018
    p := self privacy.
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1019
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1020
    p ~~ #public ifTrue:[
9050
b9df3c89888d comment/format in: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 8970
diff changeset
  1021
        privInfo := (' (* ' , p , ' *)') allItalic.
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1022
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1023
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1024
"/    self isInvalid ifTrue:[
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1025
"/        moreInfo := ' (** not executable **)'.
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1026
"/    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1027
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1028
    (self isLazyMethod not and:[self isUnloaded]) ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1029
        moreInfo := ' (** unloaded **)'
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1030
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1031
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1032
    privInfo size ~~ 0 ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1033
        moreInfo := privInfo , ' ' , moreInfo
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1034
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1035
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1036
    s := shownSelector := (self selectorPrintStringInBrowserFor:selector class:aClass).
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1037
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1038
    (cls := aClass) isNil ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1039
        cls := self containingClass
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1040
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1041
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1042
    currentChangeSet := ChangeSet current.
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1043
    isInChangeSet := currentChangeSet includesChangeForClass:cls selector:selector.
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1044
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1045
    isInChangeSet ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1046
        s := s asText emphasisAllAdd:(userPreferences emphasisForChangedCode)
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1047
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1048
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1049
    (cls isNil or:[(mthdPackage := self package) ~= cls package]) ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1050
        suppressPackage := false.
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1051
        mthdPackage = PackageId noProjectID ifTrue:[
13067
36e28077276f method printing for browser
Claus Gittinger <cg@exept.de>
parents: 12931
diff changeset
  1052
            mthdPackage := '?'.
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1053
            "/ suppressPackage := true
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1054
        ].
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1055
        suppressPackage ifFalse:[
12661
4739a38172dc class: Method
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  1056
            shadowsOrNot := (self isShadowingExtension)
4739a38172dc class: Method
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  1057
                                ifTrue:[' shadowed' ]
12543
Claus Gittinger <cg@exept.de>
parents: 12361
diff changeset
  1058
                                ifFalse:[ '' ].
13067
36e28077276f method printing for browser
Claus Gittinger <cg@exept.de>
parents: 12931
diff changeset
  1059
            p := ' [' , (((mthdPackage ? '?'), shadowsOrNot allBold),' ') allItalic , '] '.
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1060
            p := p asText emphasisAllAdd:(userPreferences emphasisForDifferentPackage).
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1061
            s := s , ' ' , p
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1062
        ].
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1063
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1064
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1065
    moreInfo size == 0 ifTrue:[^ s].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1066
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1067
    s := shownSelector , moreInfo.
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1068
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1069
    self isInvalid ifTrue:[
8970
7b17f7901516 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 8919
diff changeset
  1070
        s := s asText emphasizeAllWith:(userPreferences emphasisForObsoleteCode).
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1071
    ].
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1072
    ^ s
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1073
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1074
    "Modified: / 23-01-1998 / 13:15:15 / stefan"
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1075
    "Created: / 05-02-2000 / 22:55:56 / cg"
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1076
    "Modified: / 05-03-2007 / 16:18:53 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1077
    "Modified: / 20-07-2010 / 15:39:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1078
! !
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1079
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1080
!Method methodsFor:'printing & storing'!
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1081
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1082
selectorPrintStringInBrowserFor:selector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1083
    ^ selector
7735
a85329ee3b3a todo notification
Claus Gittinger <cg@exept.de>
parents: 7703
diff changeset
  1084
! !
a85329ee3b3a todo notification
Claus Gittinger <cg@exept.de>
parents: 7703
diff changeset
  1085
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1086
!Method methodsFor:'printing & storing'!
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1087
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1088
selectorPrintStringInBrowserFor:selector class:aClass
12851
ddd7a657b5e3 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12821
diff changeset
  1089
    |selPart idx|
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1090
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1091
    selector isNameSpaceSelector ifFalse:[^ selector].
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1092
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1093
    idx := selector indexOf:$: startingAt:3.
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1094
    "
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1095
    nsPart := selector copyFrom:2 to:idx-1.
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1096
    ns := Smalltalk at:nsPart asSymbol.
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1097
    "
7703
cfa8b91be77b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7657
diff changeset
  1098
    selPart := selector copyFrom:idx+2.
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1099
    ^ selPart ", ' {',nsPart,'}'."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1100
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1101
    "Modified: / 20-07-2010 / 10:33:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1102
! !
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1103
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1104
!MethodDictionary methodsFor:'inspecting'!
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1105
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1106
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1107
    "redefined to use DictionaryInspector
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1108
     (instead of the default Inspector)."
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1109
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1110
    ^ DictionaryInspectorView
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1111
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1112
    "Created: 12.6.1996 / 12:29:13 / stefan"
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1113
! !
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1114
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1115
!NameSpace class methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1116
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1117
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1118
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1119
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1120
    "redefined to launch a DictionaryInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1121
     (instead of the default Inspector)."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1122
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1123
    ^ DictionaryInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1124
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1125
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1126
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1127
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1128
!Object methodsFor:'debugging'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1129
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1130
inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1131
    "{ Pragma: +optSpace }"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1132
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1133
    "launch an inspector on the receiver.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1134
     this method (or better: inspectorClass) can be redefined in subclasses
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1135
     to start special inspectors."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1136
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1137
    |cls|
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1138
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1139
    cls := (Smalltalk classNamed: #'Tools::Inspector2') 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1140
                ifNil:[self inspectorClass].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1141
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1142
    cls isNil ifTrue:[
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1143
        ^ self basicInspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1144
    ].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1145
    cls openOn:self
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1146
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1147
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1148
     Object new inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1149
     (1 @ 2) inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1150
     Smalltalk inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1151
     #(1 2 3) asOrderedCollection inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1152
     (Color red) inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1153
     (Image fromFile:'bitmaps/garfield.gif') inspect
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1154
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1155
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1156
10702
90cc3aeccac5 inspector2: for consistency: the object view is always the first tab
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
  1157
!Object methodsFor:'inspecting'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1158
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1159
inspector2TabCommon
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1160
    "a tab, showing the old inspector"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1161
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1162
    ^ self inspector2TabForInspectorClass
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1163
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1164
    "Created: / 24-05-2011 / 14:56:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1165
    "Modified: / 05-07-2011 / 14:06:28 / cg"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1166
! !
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1167
10702
90cc3aeccac5 inspector2: for consistency: the object view is always the first tab
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
  1168
!Object methodsFor:'inspecting'!
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1169
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1170
inspector2TabForBasicInspect
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1171
    "a tab, showing the old basic inspector"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1172
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1173
    ^ Tools::Inspector2Tab new
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1174
            priority: 40;
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1175
            label:'Basic';
11400
a9ad41342a52 inspector2TabForBasicInspect
Claus Gittinger <cg@exept.de>
parents: 11399
diff changeset
  1176
            view: (InspectorView new inspect:self);
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1177
            yourself
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1178
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1179
    "Created: / 05-07-2011 / 13:59:59 / cg"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1180
! !
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1181
10702
90cc3aeccac5 inspector2: for consistency: the object view is always the first tab
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
  1182
!Object methodsFor:'inspecting'!
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1183
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1184
inspector2TabForInspectorClass
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1185
    "a tab, showing the old inspector"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1186
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1187
    ^ Tools::Inspector2Tab new
10702
90cc3aeccac5 inspector2: for consistency: the object view is always the first tab
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
  1188
            priority: 100;
10316
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1189
            label:(self inspector2TabLabel);
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1190
            view: (self inspectorClass new inspect:self);
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1191
            yourself
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1192
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1193
    "Created: / 05-07-2011 / 14:06:16 / cg"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1194
! !
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1195
10702
90cc3aeccac5 inspector2: for consistency: the object view is always the first tab
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
  1196
!Object methodsFor:'inspecting'!
10316
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1197
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1198
inspector2TabLabel
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1199
    "label of the main tab"
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1200
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1201
    ^ 'Object'
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1202
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1203
    "Created: / 14-07-2011 / 11:56:23 / cg"
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1204
! !
11e7bcf8838c inspector label
Claus Gittinger <cg@exept.de>
parents: 10315
diff changeset
  1205
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
  1206
!Object methodsFor:'inspecting'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1207
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1208
inspector2Tabs
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1209
    self inspectorClass ~~ Inspector ifTrue:[
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1210
        ^ #( inspector2TabCommon inspector2TabForBasicInspect )
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1211
    ].
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1212
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1213
    ^ #( inspector2TabCommon )
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1214
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1215
    "Created: / 05-07-2011 / 13:39:24 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1216
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1217
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1218
!Object methodsFor:'debugging'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1219
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1220
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1221
    "extra (pseudo instvar) entries to be shown in an inspector.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1222
     Answers a dictionary of aString -> aBlock.
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1223
     aString is name of extra attribute and MUST start with minus ($-).
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1224
     aBlock returns the object representing extra attribute."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1225
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1226
    ^Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1227
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1228
    " Try to uncomment following and inspect any object "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1229
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1230
"/    ^Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1231
"/        add:'-test' -> ['TEST TEST'];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1232
"/        yourself
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1233
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1234
    "Created: / 16-08-2005 / 20:43:33 / janfrog"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1235
    "Modified: / 02-09-2005 / 19:00:01 / janfrog"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1236
    "Modified: / 04-10-2006 / 14:33:34 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1237
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1238
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1239
!Object methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1240
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1241
inspectorValueStringInListFor:anInspector
13423
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1242
    "returns a string to be shown in the inspector's list.
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1243
     Only to be redefined where it is guaranteed, that the returned string is short."
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1244
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1245
    ^ self classNameWithArticle
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1246
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1247
    "Created: / 13-06-2012 / 12:50:26 / cg"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1248
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1249
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1250
!Object methodsFor:'testing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1251
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1252
isTestCaseLike
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1253
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1254
    ^false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1255
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1256
    "Created: / 28-02-2011 / 21:30:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1257
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1258
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1259
!Object methodsFor:'debugging'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1260
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1261
newInspector2Tab
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1262
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1263
    "Use Smalltalk>>at: to trick the dependency detector"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1264
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1265
    ^(Smalltalk at: #'Tools::Inspector2Tab') 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1266
        ifNil:[self error:'Inspector2 not available!! Something is rotten...']
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1267
        ifNotNil:[(Smalltalk at: #'Tools::Inspector2Tab') new]
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1268
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1269
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1270
!OrderedCollection methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1271
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1272
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1273
    "redefined to launch an OrderedCollectionInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1274
     (instead of the default InspectorView)."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1275
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1276
    ^ OrderedCollectionInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1277
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1278
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1279
     (OrderedCollection withAll:#(3 2 1)) inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1280
     (OrderedCollection withAll:#(3 2 1)) removeFirst; yourself; inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1281
     #(0 8 15 3 99 2) asSortedCollection inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1282
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1283
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1284
13423
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1285
!Point methodsFor:'inspecting'!
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1286
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1287
inspectorValueStringInListFor:anInspector
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1288
    "returns a string to be shown in the inspector's list"
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1289
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1290
    ^ self printString
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1291
! !
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1292
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1293
!PopUpMenu methodsFor:'converting'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1294
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1295
asMenu
12780
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1296
    "convert myself into a newStyle Menu instance, from which a MenuPanel is created.
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1297
     The old PopUpMenu and MenuView is going to be obsoleted (but still supported
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1298
     for backward compatibility)"
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1299
11399
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1300
    | menu  |
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1301
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1302
    menu := Menu new receiver: menuView receiver.
11399
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1303
    1 to: self numberOfItems do:[:i| 
12780
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1304
        | menuItem subMenu lbl checkHolder|
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1305
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1306
        lbl := (self labels at: i).
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1307
        (lbl includesString:'\c') ifTrue:[
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1308
            lbl := lbl copyReplaceString:'\c' withString:''.
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1309
            checkHolder := (menuView checkToggleAt:i) asValue.
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1310
        ].
11399
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1311
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1312
        menuItem := MenuItem new
12780
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1313
                        label: lbl;
11792
1d9eb5a2ac82 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 11773
diff changeset
  1314
                        itemValue: (menuView selectors at: i);
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1315
                        enabled: (menuView isEnabled: i);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1316
                        shortcutKey: (menuView shortKeys at: i);
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1317
                        yourself.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1318
11399
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1319
        (subMenu := self subMenuAt: i) notNil ifTrue:[
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1320
            menuItem submenu: subMenu asMenu
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1321
        ].
12780
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1322
        checkHolder notNil ifTrue:[
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1323
            checkHolder onChangeEvaluate:[ 
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1324
                menuView receiver perform:(menuView selectors at: i) with:checkHolder value 
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1325
            ].
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1326
            menuItem indication:checkHolder.
12781
b1ebd8f71447 class: ComboView
Claus Gittinger <cg@exept.de>
parents: 12780
diff changeset
  1327
            menuItem hideMenuOnActivated:false.
12780
c2adddc0328e popupMenu - asMenu
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1328
        ].
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1329
        menu addItem: menuItem.
11399
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1330
    ].
529c80f3220b changed: #asMenu
Claus Gittinger <cg@exept.de>
parents: 11283
diff changeset
  1331
    ^ menu.
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1332
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1333
    "Created: / 18-10-2008 / 19:01:32 / Jan Vrany <vranyj1@fel.cvut.cz>"
11792
1d9eb5a2ac82 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 11773
diff changeset
  1334
    "Modified: / 09-09-2012 / 13:10:25 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1335
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1336
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1337
!ProfileTree methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1338
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1339
method
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1340
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1341
    class ifNil:[^nil].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1342
    ^class >> selector
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1343
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1344
    "Created: / 01-12-2007 / 22:50:16 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1345
    "Modified: / 07-11-2008 / 08:40:35 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1346
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1347
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1348
!ProfileTree methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1349
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1350
package
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1351
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1352
    self method ifNil:[^nil].
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1353
    ^self method package
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1354
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1355
    "Created: / 01-12-2007 / 22:50:28 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1356
    "Modified: / 07-11-2008 / 08:40:35 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1357
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1358
13504
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1359
!ProgrammingLanguage methodsFor:'accessing'!
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1360
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1361
toolbox
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1362
    "Answer a toolbox for receiver. A toolbox is used by language-agnostic tools (such as
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1363
     class browser) to perform language-specific tasks (search for implementors,
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1364
     build implementor menu and so on. If nil is returned, no toolbox available"
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1365
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1366
    | class |
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1367
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1368
    class := self toolboxClass.   
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1369
    ^ class notNil 
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1370
        ifTrue:[ class new] 
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1371
        ifFalse:[ nil ]
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1372
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1373
    "Created: / 31-08-2013 / 10:15:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1374
    "Modified: / 31-08-2013 / 23:42:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1375
! !
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1376
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1377
!ProgrammingLanguage methodsFor:'accessing - classes'!
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1378
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1379
toolboxClass
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1380
    "Answer a 'toolbox class'. A toolbox is used by language-agnostic tools (such as
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1381
     class browser) to perform language-specific tasks (search for implementors,
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1382
     build implementor menu and so on. If nil is returned, no toolbox available"
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1383
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1384
    ^ nil
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1385
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1386
    "Created: / 31-08-2013 / 10:07:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1387
! !
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  1388
13423
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1389
!Rectangle methodsFor:'inspecting'!
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1390
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1391
inspectorValueStringInListFor:anInspector
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1392
    "returns a string to be shown in the inspector's list"
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1393
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1394
    ^ self origin printString,'->',self corner printString
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1395
! !
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  1396
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1397
!RunArray methodsFor:'user interface'!
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1398
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1399
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1400
    "Re-reimplemented so that we don't get an ordered collection inspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1401
     which would get very confused when confronted with a runArray."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1402
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1403
    ^ InspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1404
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1405
    "Modified: / 30.10.1997 / 14:28:20 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1406
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1407
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1408
!SelectionInListModelView methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1409
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1410
textStartLeft
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1411
    ^ textStartLeft
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1412
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1413
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1414
!SelectionInListModelView methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1415
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1416
textStartLeft:something
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1417
    textStartLeft := something.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1418
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1419
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1420
!Set methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1421
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1422
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1423
    "redefined to use SetInspector
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1424
     (instead of the default Inspector)."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1425
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1426
    ^ SetInspectorView
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1427
! !
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1428
10724
b0d5a37decd9 category of: #isCodeView2
Claus Gittinger <cg@exept.de>
parents: 10702
diff changeset
  1429
!SimpleView methodsFor:'testing'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1430
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1431
isCodeView2
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1432
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1433
    ^ false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1434
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1435
    "Created: / 20-07-2010 / 15:42:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9673
c590ef71ca2a sharedpool inspector
Claus Gittinger <cg@exept.de>
parents: 9324
diff changeset
  1436
! !
c590ef71ca2a sharedpool inspector
Claus Gittinger <cg@exept.de>
parents: 9324
diff changeset
  1437
12623
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1438
!Smalltalk class methodsFor:'queries'!
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1439
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1440
inspectorClass
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1441
    "redefined to use DictionaryInspector
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1442
     (instead of the default Inspector)."
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1443
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1444
    ^ DictionaryInspectorView
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1445
! !
9b17ce85cb91 class: Smalltalk
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  1446
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
  1447
!StringCollection methodsFor:'inspecting'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1448
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1449
inspector2TabText
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1450
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1451
    ^self newInspector2Tab
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1452
        label: 'String';
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1453
        priority: 25;
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1454
        view: ((ScrollableView for:TextView) contents: self asString; yourself)
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1455
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1456
    "Created: / 17-02-2008 / 10:13:07 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1457
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1458
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
  1459
!StringCollection methodsFor:'inspecting'!
10164
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1460
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1461
inspector2Tabs
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1462
    ^ #(inspector2TabCommon inspector2TabText )
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1463
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1464
    "Created: / 05-07-2011 / 13:40:43 / cg"
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1465
! !
0a7e3e312a89 changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 10120
diff changeset
  1466
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1467
!Symbol methodsFor:'accessing'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1468
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1469
formattedCode
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1470
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1471
    "Used by CodeGenerator"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1472
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1473
    ^self
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1474
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1475
    "Created: / 07-07-2009 / 20:03:21 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1476
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1477
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1478
!Symbol methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1479
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1480
inspectorValueStringInListFor:anInspector
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1481
    "returns a string to be shown in the inspector's list"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1482
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1483
    ^ self storeString
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1484
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1485
10313
a2f4e3f74efe category
Claus Gittinger <cg@exept.de>
parents: 10310
diff changeset
  1486
!Text methodsFor:'inspecting'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1487
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1488
inspector2TabText
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1489
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1490
    ^self newInspector2Tab
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1491
        label: 'Text';
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
  1492
        priority: 50;
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
  1493
        view: ((ScrollableView for:EditTextView) contents: self; yourself)
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1494
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1495
    "Created: / 17-02-2008 / 09:03:36 / janfrog"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1496
    "Modified: / 17-02-2008 / 10:28:33 / janfrog"
10637
1114ddcf69f7 variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 10527
diff changeset
  1497
    "Modified: / 21-08-2011 / 08:02:46 / cg"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1498
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1499
7754
7c76e5708dfa oops - got corrupted
Claus Gittinger <cg@exept.de>
parents: 7753
diff changeset
  1500
!Text methodsFor:'inspecting'!
7c76e5708dfa oops - got corrupted
Claus Gittinger <cg@exept.de>
parents: 7753
diff changeset
  1501
8843
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1502
inspectorExtraAttributes
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1503
    "extra (pseudo instvar) entries to be shown in an inspector."
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1504
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1505
    ^ Dictionary new
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1506
	declareAllNewFrom:(super inspectorExtraAttributes ? #());
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1507
	add:'-text' -> [ self ];
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1508
	yourself
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1509
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1510
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1511
     'hello' allBold inspect
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1512
    "
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1513
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1514
    "Created: / 18-09-2006 / 21:25:52 / cg"
Claus Gittinger <cg@exept.de>
parents: 8839
diff changeset
  1515
    "Modified: / 06-10-2006 / 13:57:38 / cg"
7299
efa954fda5c1 inspector code now as extension
Claus Gittinger <cg@exept.de>
parents: 7298
diff changeset
  1516
! !
8918
230356e1b722 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8844
diff changeset
  1517
9691
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1518
!Timestamp methodsFor:'inspecting'!
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1519
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1520
inspectorExtraAttributes
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1521
    "extra (pseudo instvar) entries to be shown in an inspector."
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1522
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1523
    ^ Dictionary new
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1524
        declareAllNewFrom:(super inspectorExtraAttributes ? #());
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1525
        add:'-dayInWeek' -> [ self dayInWeek printString , ' "', self asDate dayOfWeekName , '"' ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1526
        add:'-dayInYear' -> [ self dayInYear ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1527
        add:'-daysInMonth' -> [ self asDate daysInMonth ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1528
        add:'-monthName' -> [ self asDate monthName ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1529
        add:'-leapYear' -> [ self asDate isLeapYear ];
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1530
        yourself
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1531
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1532
    "
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1533
     Timestamp now inspect
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1534
    "
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1535
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1536
    "Created: / 20-01-2011 / 12:19:05 / cg"
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1537
! !
312706640f5c better date and timestamp inspecting
Claus Gittinger <cg@exept.de>
parents: 9673
diff changeset
  1538
12852
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1539
!Timestamp methodsFor:'inspecting'!
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1540
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1541
inspectorValueStringInListFor:anInspector
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1542
    "returns a string to be shown in the inspector's list"
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1543
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1544
    ^ self printString
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1545
! !
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1546
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1547
!UUID methodsFor:'inspecting'!
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1548
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1549
inspectorValueStringInListFor:anInspector
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1550
    "returns a string to be shown in the inspector's list"
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1551
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1552
    ^ self printString
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1553
! !
bbe17cc4f9aa Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 12851
diff changeset
  1554
11773
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1555
!UndefinedObject methodsFor:'inspecting'!
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1556
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1557
inspectorValueStringInListFor:anInspector
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1558
    "returns a string to be shown in the inspector's list"
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1559
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1560
    ^ 'nil'
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1561
! !
Claus Gittinger <cg@exept.de>
parents: 11723
diff changeset
  1562
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
  1563
!UninterpretedBytes methodsFor:'inspecting'!
11264
b04b1d06f4be hex dump in integerarray
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  1564
b04b1d06f4be hex dump in integerarray
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  1565
inspector2Tabs
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
  1566
    ^ #( inspector2TabCommon inspector2TabForHexDump )
11264
b04b1d06f4be hex dump in integerarray
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  1567
11283
Claus Gittinger <cg@exept.de>
parents: 11282
diff changeset
  1568
    "Created: / 27-02-2012 / 21:51:36 / cg"
11264
b04b1d06f4be hex dump in integerarray
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  1569
! !
b04b1d06f4be hex dump in integerarray
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  1570
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1571
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1572
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1573
alwaysOpenNewTabWhenCtrlClick
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1574
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1575
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1576
        UserPreferences current alwaysOpenNewTabWhenCtrlClick 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1577
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1578
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1579
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1580
    ^ self at:#alwaysOpenNewTabWhenCtrlClick ifAbsent:false.
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1581
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1582
    "Created: / 19-10-2008 / 08:00:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1583
    "Modified: / 14-02-2010 / 19:37:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1584
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1585
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1586
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1587
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1588
alwaysOpenNewTabWhenCtrlClick: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1589
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1590
    self at:#alwaysOpenNewTabWhenCtrlClick put: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1591
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1592
    "Created: / 19-10-2008 / 08:01:45 / Jan Vrany <vranyj1@fel.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1593
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1594
12788
6313ab46a73c class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12781
diff changeset
  1595
!UserPreferences methodsFor:'obsolete'!
10525
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1596
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1597
codeView2AutoIndent
12788
6313ab46a73c class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12781
diff changeset
  1598
    <resource: #obsolete>
10525
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1599
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1600
    ^self at:#codeView2AutoIndent ifAbsent: false
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1601
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1602
    "
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1603
     UserPreferences current codeView2AutoIndent 
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1604
     UserPreferences current codeView2AutoIndent:true 
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1605
     UserPreferences current codeView2AutoIndent:false"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1606
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1607
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1608
    "Created: / 07-08-2011 / 12:46:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1609
! !
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1610
12788
6313ab46a73c class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12781
diff changeset
  1611
!UserPreferences methodsFor:'obsolete'!
10525
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1612
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1613
codeView2AutoIndent: aBoolean
12788
6313ab46a73c class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12781
diff changeset
  1614
    <resource: #obsolete>
10525
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1615
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1616
    ^self at:#codeView2AutoIndent put: aBoolean
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1617
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1618
    "
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1619
     UserPreferences current codeView2AutoIndent 
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1620
     UserPreferences current codeView2AutoIndent:true 
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1621
     UserPreferences current codeView2AutoIndent:false"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1622
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1623
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1624
    "Created: / 07-08-2011 / 12:47:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1625
! !
4114204ee980 Added preference for auto indent in CodeView
vrany
parents: 10522
diff changeset
  1626
10795
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1627
!UserPreferences methodsFor:'accessing-prefs-code view'!
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1628
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1629
codeView2ShowAcceptCancel
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1630
    ^self at:#codeView2ShowAcceptCancel ifAbsent: false
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1631
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1632
    "
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1633
     UserPreferences current codeView2ShowAcceptCancel 
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1634
     UserPreferences current codeView2ShowAcceptCancel:true 
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1635
     UserPreferences current codeView2ShowAcceptCancel:false"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1636
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1637
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1638
    "Created: / 10-10-2011 / 16:41:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1639
! !
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1640
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1641
!UserPreferences methodsFor:'accessing-prefs-code view'!
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1642
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1643
codeView2ShowAcceptCancel: aBoolean
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1644
    ^self at:#codeView2ShowAcceptCancel put: aBoolean
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1645
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1646
    "
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1647
     UserPreferences current codeView2ShowAcceptCancel 
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1648
     UserPreferences current codeView2ShowAcceptCancel:true 
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1649
     UserPreferences current codeView2ShowAcceptCancel:false"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1650
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1651
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1652
    "Created: / 10-10-2011 / 16:40:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1653
! !
6f44639ec301 Added user preference to control default accept/cancel bar visibility
vrany
parents: 10779
diff changeset
  1654
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1655
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1656
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1657
showBookmarkBar
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1658
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1659
11989
16928a5c9185 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11973
diff changeset
  1660
    ^ self at:#showBookmarkBar ifAbsent: false "true".
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1661
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1662
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1663
     UserPreferences current showBookmarkBar
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1664
     UserPreferences current showBookmarkBar:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1665
     UserPreferences current showBookmarkBar:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1666
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1667
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1668
    "Created: / 18-05-2011 / 16:48:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1669
    "Modified: / 03-06-2011 / 11:01:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1670
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1671
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1672
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1673
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1674
showBookmarkBar: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1675
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1676
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1677
    ^ self at:#showBookmarkBar put: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1678
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1679
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1680
     UserPreferences current showBookmarkBar
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1681
     UserPreferences current showBookmarkBar:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1682
     UserPreferences current showBookmarkBar:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1683
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1684
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1685
    "Created: / 18-05-2011 / 17:28:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1686
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1687
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1688
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1689
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1690
showEmbeddedTestRunnerInBrowser
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1691
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1692
12051
1d4a61fe3f0c class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 11989
diff changeset
  1693
    ^ self at:#showEmbeddedTestRunnerInBrowser ifAbsent:true
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1694
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1695
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1696
     UserPreferences current showEmbeddedTestRunnerInBrowser
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1697
     UserPreferences current showEmbeddedTestRunnerInBrowser:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1698
     UserPreferences current showEmbeddedTestRunnerInBrowser:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1699
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1700
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1701
    "Created: / 11-03-2010 / 10:11:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1702
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1703
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1704
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1705
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1706
showEmbeddedTestRunnerInBrowser:aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1707
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1708
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1709
    ^ self at:#showEmbeddedTestRunnerInBrowser put:aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1710
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1711
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1712
     UserPreferences current showEmbeddedTestRunnerInBrowser:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1713
     UserPreferences current showEmbeddedTestRunnerInBrowser:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1714
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1715
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1716
    "Created: / 11-03-2010 / 10:11:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1717
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1718
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1719
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1720
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1721
showGlobalHistory
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1722
    "Whether to show global history in the browser"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1723
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1724
    ^ self at:#showGlobalHistory ifAbsent: true.
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1725
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1726
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1727
     UserPreferences current showGlobalHistory
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1728
     UserPreferences current showGlobalHistory:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1729
     UserPreferences current showGlobalHistory:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1730
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1731
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1732
    "Created: / 07-07-2011 / 00:03:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1733
    "Modified (comment): / 26-07-2012 / 16:35:54 / cg"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1734
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1735
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1736
!UserPreferences methodsFor:'accessing-prefs-browser'!
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1737
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1738
showGlobalHistory: aBoolean
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1739
    "Whether to show global history in the browser"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1740
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1741
    ^ self at:#showGlobalHistory put: aBoolean
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1742
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1743
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1744
     UserPreferences current showGlobalHistory
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1745
     UserPreferences current showGlobalHistory:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1746
     UserPreferences current showGlobalHistory:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1747
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1748
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1749
    "Created: / 07-07-2011 / 00:02:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1750
    "Modified (comment): / 26-07-2012 / 16:35:57 / cg"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1751
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1752
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1753
!UserPreferences methodsFor:'accessing-prefs-browser'!
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1754
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1755
showLocalHistory
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1756
    "Whether to show local (per tab) history in the browser"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1757
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1758
    ^ self at:#showLocalHistory ifAbsent: true.
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1759
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1760
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1761
     UserPreferences current showLocalHistory
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1762
     UserPreferences current showLocalHistory:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1763
     UserPreferences current showLocalHistory:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1764
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1765
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1766
    "Created: / 07-07-2011 / 00:02:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1767
    "Modified (comment): / 26-07-2012 / 16:35:31 / cg"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1768
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1769
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1770
!UserPreferences methodsFor:'accessing-prefs-browser'!
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1771
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1772
showLocalHistory: aBoolean
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1773
    "Whether to show local (per tab) history in the browser"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1774
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1775
    ^ self at:#showLocalHistory put: aBoolean
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1776
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1777
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1778
     UserPreferences current showLocalHistory
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1779
     UserPreferences current showLocalHistory:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1780
     UserPreferences current showLocalHistory:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1781
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1782
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1783
    "Created: / 07-07-2011 / 00:02:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11676
294f8ac6242d comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11450
diff changeset
  1784
    "Modified (comment): / 26-07-2012 / 16:35:41 / cg"
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1785
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1786
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1787
!UserPreferences methodsFor:'accessing-prefs-browser'!
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1788
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1789
showMethodTemplate
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1790
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1791
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1792
    ^ self at:#showMethodTemplate ifAbsent:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1793
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1794
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1795
     UserPreferences current showMethodTemplate
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1796
     UserPreferences current showMethodTemplate:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1797
     UserPreferences current showMethodTemplate:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1798
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1799
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1800
    "Created: / 12-02-2010 / 12:06:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1801
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1802
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1803
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1804
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1805
showMethodTemplate:aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1806
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1807
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1808
    ^ self at:#showMethodTemplate put:aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1809
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1810
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1811
     UserPreferences current showMethodTemplate:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1812
     UserPreferences current showMethodTemplate:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1813
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1814
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1815
    "Created: / 12-02-2010 / 12:05:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1816
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1817
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1818
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1819
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1820
sortAndIndentClassesByInheritance
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1821
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1822
    ^ self at:#sortAndIndentClassesByInheritance ifAbsent: false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1823
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1824
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1825
     UserPreferences current sortAndIndentClassesByInheritance
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1826
     UserPreferences current sortAndIndentClassesByInheritance:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1827
     UserPreferences current sortAndIndentClassesByInheritance:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1828
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1829
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1830
    "Created: / 06-07-2011 / 19:09:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1831
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1832
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1833
!UserPreferences methodsFor:'accessing-prefs-browser'!
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1834
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1835
sortAndIndentClassesByInheritance: aBoolean
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1836
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1837
    ^ self at:#sortAndIndentClassesByInheritance put: aBoolean
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1838
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1839
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1840
     UserPreferences current sortAndIndentClassesByInheritance
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1841
     UserPreferences current sortAndIndentClassesByInheritance:true
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1842
     UserPreferences current sortAndIndentClassesByInheritance:false
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1843
    "
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1844
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1845
    "Created: / 06-07-2011 / 19:09:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1846
! !
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1847
10779
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1848
!UserPreferences methodsFor:'accessing-prefs-browser'!
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1849
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1850
sourceCodeManagementMenuLayout
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1851
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1852
    "Defines the layout of source code management menus in 
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1853
     NewSystemBrowser. Can be one of:
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1854
        #old        - old style as of 2011-10-06
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1855
        #compact    - only one Repository menu, SCM specific menus underneath
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1856
        #inline     - Repository and then SCM specific menus inlined
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1857
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1858
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1859
    ^ self at:#sourceCodeManagementMenuLayout ifAbsent: #old
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1860
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1861
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1862
     UserPreferences current sourceCodeManagementMenuLayout
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1863
     UserPreferences current sourceCodeManagementMenuLayout: #inline
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1864
     UserPreferences current sourceCodeManagementMenuLayout: #compact
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1865
     UserPreferences current sourceCodeManagementMenuLayout: #old
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1866
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1867
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1868
    "Created: / 06-10-2011 / 18:42:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1869
! !
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1870
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1871
!UserPreferences methodsFor:'accessing-prefs-browser'!
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1872
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1873
sourceCodeManagementMenuLayout: aSymbol
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1874
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1875
    "Defines the layout of source code management menus in 
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1876
     NewSystemBrowser. Can be one of:
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1877
        #old        - old style as of 2011-10-06
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1878
        #compact    - only one Repository menu, SCM specific menus underneath
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1879
        #inline     - Repository and then SCM specific menus inlined
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1880
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1881
    self assert: (#(old compact inline) includes: aSymbol).
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1882
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1883
    ^ self at:#sourceCodeManagementMenuLayout put: aSymbol
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1884
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1885
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1886
     UserPreferences current sourceCodeManagementMenuLayout
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1887
     UserPreferences current sourceCodeManagementMenuLayout: #inline
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1888
     UserPreferences current sourceCodeManagementMenuLayout: #compact
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1889
     UserPreferences current sourceCodeManagementMenuLayout: #old
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1890
    "
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1891
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1892
    "Created: / 06-10-2011 / 18:44:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1893
! !
3b5e7e333de6 Added SCM menu layout preference
vrany
parents: 10749
diff changeset
  1894
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1895
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1896
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1897
useCodeView2In: appSymbol
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1898
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1899
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1900
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1901
    ^self useCodeView2InTools "/ or:[self perform: ('useCodeView2In' , appSymbol) asSymbol]. 
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1902
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1903
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1904
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1905
    UserPreferences current useCodeView2In: #Browser 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1906
    UserPreferences current useCodeView2InBrowser:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1907
    UserPreferences current useCodeView2InBrowser:false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1908
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1909
    UserPreferences current useCodeView2InTools:true
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1910
    UserPreferences current useCodeView2InTools:false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1911
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1912
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1913
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1914
    "Created: / 26-07-2011 / 10:26:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1915
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1916
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1917
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1918
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1919
useCodeView2InBrowser
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1920
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1921
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1922
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1923
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1924
    ^self at:#useCodeView2InBrowser ifAbsent: false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1925
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1926
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1927
     UserPreferences current useCodeView2InBrowser 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1928
     UserPreferences current useCodeView2InBrowser:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1929
     UserPreferences current useCodeView2InBrowser:false"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1930
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1931
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1932
    "Created: / 26-07-2011 / 10:22:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1933
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1934
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1935
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1936
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1937
useCodeView2InBrowser: aBoolean
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1938
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1939
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1940
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1941
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1942
    ^self at:#useCodeView2InBrowser put: aBoolean
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1943
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1944
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1945
     UserPreferences current useCodeView2InBrowser 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1946
     UserPreferences current useCodeView2InBrowser:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1947
     UserPreferences current useCodeView2InBrowser:false"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1948
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1949
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1950
    "Created: / 26-07-2011 / 10:21:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1951
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1952
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1953
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1954
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1955
useCodeView2InDebugger
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1956
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1957
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1958
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1959
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1960
    ^self at:#useCodeView2InDebugger ifAbsent: false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1961
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1962
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1963
     UserPreferences current useCodeView2InDebugger 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1964
     UserPreferences current useCodeView2InDebugger:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1965
     UserPreferences current useCodeView2InDebugger:false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1966
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1967
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1968
    "Created: / 26-07-2011 / 10:22:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1969
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1970
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1971
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1972
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1973
useCodeView2InDebugger: aBoolean
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1974
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1975
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1976
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  1977
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1978
    ^self at:#useCodeView2InDebugger put: aBoolean
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1979
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1980
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1981
     UserPreferences current useCodeView2InDebugger 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1982
     UserPreferences current useCodeView2InDebugger:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1983
     UserPreferences current useCodeView2InDebugger:false"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1984
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1985
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1986
    "Created: / 26-07-2011 / 10:22:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1987
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1988
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  1989
!UserPreferences methodsFor:'accessing-prefs-code view'!
10240
d156bf8c53c7 Added methods to UserPreferences
vrany
parents: 10204
diff changeset
  1990
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1991
useCodeView2InTools
11989
16928a5c9185 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11973
diff changeset
  1992
    ^self at:#useCodeView2InTools ifAbsent:true "false"
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1993
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1994
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1995
     UserPreferences current useCodeView2InTools 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1996
     UserPreferences current useCodeView2InTools:true 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1997
     UserPreferences current useCodeView2InTools:false"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1998
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  1999
    "Created: / 12-02-2010 / 12:13:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2000
    "Modified: / 15-02-2010 / 09:26:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2001
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2002
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2003
!UserPreferences methodsFor:'accessing-prefs-code view'!
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2004
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2005
useCodeView2InTools:aBoolean 
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2006
    ^self at:#useCodeView2InTools put:aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2007
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2008
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2009
     UserPreferences current useCodeView2InBrowser:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2010
     UserPreferences current useCodeView2InBrowser:false"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2011
    "Created: / 12-02-2010 / 12:14:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2012
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2013
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2014
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2015
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2016
useCodeView2InWorkspace
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2017
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2018
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2019
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2020
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2021
    ^self at:#useCodeView2InWorkspace ifAbsent: false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2022
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2023
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2024
     UserPreferences current useCodeView2InWorkspace 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2025
     UserPreferences current useCodeView2InWorkspace:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2026
     UserPreferences current useCodeView2InWorkspace:false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2027
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2028
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2029
    "Created: / 26-07-2011 / 10:23:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2030
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2031
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2032
!UserPreferences methodsFor:'accessing-prefs-code view'!
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2033
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2034
useCodeView2InWorkspace: aBoolean
12356
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2035
    "no longer used - will vanish.
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2036
     Now the use of the codeView2 is globally enabled/disabled by useCodeView2InTools"
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2037
fda0dda38564 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 12092
diff changeset
  2038
    <resource: #obsolete>
10399
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2039
    ^self at:#useCodeView2InWorkspace put: aBoolean
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2040
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2041
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2042
     UserPreferences current useCodeView2InWorkspace 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2043
     UserPreferences current useCodeView2InWorkspace:true 
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2044
     UserPreferences current useCodeView2InWorkspace:false
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2045
    "
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2046
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2047
    "Created: / 26-07-2011 / 10:22:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2048
! !
d8e5a8c0c162 - per-tool preference for CodeView2
vrany
parents: 10393
diff changeset
  2049
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2050
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2051
10417
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2052
useInPlaceSearchInBrowserLists
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2053
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2054
    ^ self at:#useInPlaceSearchInBrowserLists ifAbsent: false
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2055
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2056
    "
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2057
     UserPreferences current useInPlaceSearchInBrowserLists
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2058
     UserPreferences current useInPlaceSearchInBrowserLists:true
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2059
     UserPreferences current useInPlaceSearchInBrowserLists:false
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2060
    "
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2061
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2062
    "Created: / 28-07-2011 / 09:34:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2063
! !
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2064
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2065
!UserPreferences methodsFor:'accessing-prefs-browser'!
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2066
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2067
useInPlaceSearchInBrowserLists: aBoolean
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2068
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2069
    ^ self at:#useInPlaceSearchInBrowserLists put: aBoolean
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2070
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2071
    "
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2072
     UserPreferences current useInPlaceSearchInBrowserLists
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2073
     UserPreferences current useInPlaceSearchInBrowserLists:true
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2074
     UserPreferences current useInPlaceSearchInBrowserLists:false
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2075
    "
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2076
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2077
    "Created: / 28-07-2011 / 09:35:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2078
! !
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2079
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2080
!UserPreferences methodsFor:'accessing-prefs-browser'!
f785ac3d937b Added preference for in-line search in browser lists
vrany
parents: 10399
diff changeset
  2081
10051
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2082
webBrowserLikeLayout
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2083
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2084
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2085
    ^ self at:#webBrowserLikeLayout ifAbsent: false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2086
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2087
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2088
     UserPreferences current webBrowserLikeLayout
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2089
     UserPreferences current webBrowserLikeLayout:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2090
     UserPreferences current webBrowserLikeLayout:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2091
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2092
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2093
    "Created: / 07-06-2011 / 14:33:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2094
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2095
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2096
!UserPreferences methodsFor:'accessing-prefs-browser'!
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2097
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2098
webBrowserLikeLayout: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2099
    "experimental."
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2100
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2101
    ^ self at:#webBrowserLikeLayout put: aBoolean
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2102
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2103
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2104
     UserPreferences current webBrowserLikeLayout
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2105
     UserPreferences current webBrowserLikeLayout:true
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2106
     UserPreferences current webBrowserLikeLayout:false
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2107
    "
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2108
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2109
    "Created: / 07-06-2011 / 14:31:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2110
! !
5b7e30460ea4 support non-class based code completion
Claus Gittinger <cg@exept.de>
parents: 9691
diff changeset
  2111
8919
e18fa0224d6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8918
diff changeset
  2112
!stx_libtool class methodsFor:'documentation'!
e18fa0224d6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8918
diff changeset
  2113
e18fa0224d6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8918
diff changeset
  2114
extensionsVersion_CVS
13504
2c37f59ad97b Added ProgrammingLanguage>>toolbox(Class)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13423
diff changeset
  2115
    ^ '$Header: /cvs/stx/stx/libtool/extensions.st,v 1.117 2013-09-05 21:34:32 vrany Exp $'
12543
Claus Gittinger <cg@exept.de>
parents: 12361
diff changeset
  2116
! !
13423
792b998bcc1a class: MessageNode
Claus Gittinger <cg@exept.de>
parents: 13067
diff changeset
  2117