GenericToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Mon, 02 Nov 2009 16:17:11 +0100
changeset 4061 6526c8291e90
parent 4059 aafb045f8dfc
child 4068 086732e57391
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
     3
	      All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#GenericToolbarIconLibrary
3086
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    15
	instanceVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    16
	classVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    17
	poolDictionaries:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    18
	category:'Interface-Smalltalk'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2001 by eXept Software AG
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
    26
	      All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    A common place to keep commonly used icons.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    (also: VW compatibility)
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    41
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    42
    Notice: now, ToolbarIconLibrary is a reference to the actual IconLibrary,
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    43
    which will refer to either this class (GenericToolbarIconLibrary) or
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    44
    one of its subclasses (especially: XPToolbarIconLibrary).
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    45
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    46
    The iconLibrary class is specified in the styleSheet (see mswindowsXP.style
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    47
    as an example).
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    51
!GenericToolbarIconLibrary class methodsFor:'class initialization'!
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    52
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    53
initialize
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    54
    ToolbarIconLibrary isNil ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
    55
	ToolbarIconLibrary := self
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    56
    ]
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    57
! !
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    58
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    59
!GenericToolbarIconLibrary class methodsFor:'compatibility-VW'!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    60
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    61
visualFor:aKey
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    62
    ^ self perform:aKey ifNotUnderstood:[nil]
3894
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    63
! !
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    64
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    65
!GenericToolbarIconLibrary class methodsFor:'image specs'!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    66
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    67
barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    68
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    69
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    70
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    71
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    72
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    73
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    74
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    75
     self barResizeHorizontalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    76
     ImageEditor openOnClass:self andSelector:#barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    77
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    78
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    79
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    80
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    81
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    82
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    83
        constantNamed:'GenericToolbarIconLibrary class barResizeHorizontalIcon'
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    84
        ifAbsentPut:[(Depth2Image new) width: 11; height: 19; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@B@A@@@A@B@A@@@A@@@A@@@A@@@!!H@B!!J@J!!J B!!JC@!!H@@A@@@A@@@A@@@A@@@A@@@A@@@@@A') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 11; height: 19; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A<DG0P_AA<DG0P_AA<UG3V_]]<5''1T_AA<DG0P_AA<DG0P_@A<b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    85
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    86
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    87
barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    88
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    89
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    90
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    91
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    92
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    93
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    94
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    95
     self barResizeVerticalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    96
     ImageEditor openOnClass:self andSelector:#barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    97
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    98
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    99
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   100
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   101
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   102
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   103
        constantNamed:'GenericToolbarIconLibrary class barResizeVerticalIcon'
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   104
        ifAbsentPut:[(Depth2Image new) width: 19; height: 11; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@@@@*@@@@@J*@@@@@@@@@AUUUUUP@@@@@@@@@*(@@@@@*@@@@@@ @@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 19; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@S@D@@@N@@@_@@@@@A_??@@@@@@_@@@N@@@D@D@@@H') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   105
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   106
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   107
ledGreen14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   108
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   109
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   110
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   111
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   112
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   113
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   114
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   115
     self ledGreen14x14 inspect
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   116
     ImageEditor openOnClass:self andSelector:#ledGreen14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   117
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   118
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   119
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   120
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   121
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   122
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   123
        constantNamed:'GenericToolbarIconLibrary class ledGreen14x14'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   124
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   125
K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K$X+A0@@A2-FK"8.K"9FDPDUK2<U@QEFK"8.Q"(BIS)CP3(%@")FK"9DB ,#LBX&LBLKB$P.K$HCBP8R
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   126
D1 RC $CP"8.P@PEC1PYF1,PAPQ@K"8?CP ZG2\)KA0FCS<.K$@(CB41MCX2KP0(PB8.P#0]E#]AQS,WHS1BK"8.O3 .G"@$H"88O28.K"8.O#$5L3L5NS8.
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   127
K"8.K"8.P#<=OS=BK"8.K @a') ; colorMapFromArray:#[24 86 20 32 110 0 36 116 0 40 108 20 48 114 20 60 172 0 72 172 0 76 128 80 76 172 0 76 174 10 80 134 80 80 156 40 88 164 0 92 144 70 96 188 30 104 200 20 108 200 20 116 158 120 116 198 50 120 202 50 120 206 20 124 180 100 124 198 0 124 200 0 124 202 50 124 208 20 124 214 0 128 210 20 128 214 0 132 174 90 132 196 60 132 218 0 132 218 40 136 176 90 136 198 60 136 206 100 136 224 60 140 204 110 140 208 100 140 220 0 144 178 130 144 222 0 148 182 150 148 182 160 148 224 0 148 230 0 152 188 120 156 206 140 156 216 120 156 234 0 164 236 0 172 178 190 176 240 30 180 186 190 184 244 40 184 244 70 188 194 200 192 200 210 192 234 170 192 248 90 196 202 210 208 216 220 212 218 230 212 220 230 216 222 230 216 255 120 220 226 240 220 248 210 224 232 240 224 255 130 228 236 250]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A? O?A?>G?8_?-?>G?8_?!!?>C?0G>@O0@@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   128
!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   129
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   130
ledRed14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   131
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   132
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   133
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   134
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   135
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   136
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   137
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   138
     self ledRed14x14 inspect
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   139
     ImageEditor openOnClass:self andSelector:#ledRed14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   140
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   141
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   142
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   143
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   144
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   145
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   146
        constantNamed:'GenericToolbarIconLibrary class ledRed14x14'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   147
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   148
B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HBB8OAP@@AP<.B@ HB@ .BPHSH2LS@ $.B@ HK 8DGSD5MSD]A@8.B@ ,A ("JRD!!JRHJA"0HBB(AD!! \
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   149
HB@\FAHAJ  HI LMF2\+J2,_CPL&B@ %A04-LCH3L2<MA2THBBXLDS$6NC 7NQDLI  HJ!!(TLC(<OC,2E!!(*B@ HIQTYJCP4JA$UIP HB@ HIA\PB0,PE2PH
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   150
B@ HB@ HJ"T^G"T*B@ HB@@a') ; colorMapFromArray:#[92 24 20 112 22 20 120 2 0 120 20 20 124 2 0 128 78 80 136 74 80 144 66 70 152 188 120 160 118 120 164 36 40 172 178 190 176 126 130 180 0 0 180 148 150 180 150 160 180 186 190 184 0 0 184 14 10 184 104 100 188 90 90 188 194 200 192 90 90 192 200 210 196 30 30 196 112 120 196 202 210 208 16 20 208 48 50 208 112 110 208 216 220 212 16 20 212 48 50 212 94 90 212 96 100 212 136 140 212 218 230 212 220 230 216 222 230 220 18 20 220 56 60 220 116 120 220 226 240 224 18 20 224 232 240 228 0 0 228 236 250 232 0 0 236 0 0 236 172 170 240 0 0 244 0 0 244 40 40 252 206 210 255 8 10 255 12 10 255 24 20 255 30 30 255 70 70 255 82 80 255 104 100]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A? O?A?>G?8_?)?>G?8_?!!?>C?0G>@O0@@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   151
!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   152
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   153
ledYellow14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   154
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   155
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   156
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   157
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   158
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   159
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   160
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   161
     self ledYellow14x14 inspect
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   162
     ImageEditor openOnClass:self andSelector:#ledYellow14x14
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   163
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   164
    "
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   165
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   166
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   167
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   168
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   169
        constantNamed:'GenericToolbarIconLibrary class ledYellow14x14'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   170
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   171
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@Q<R@ @@@!!H_@PDA@PD_B \#L3L#A0(_@PDAG1LILC=EQS<0BQL_@PD^AQ,2NSP6NSH[AQ8A@Q(CIR$,
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   172
K"<,JBTCF DAFP $J3D5M3\-I@ Y@PDXCRH8N#,<OC !!CQ A@Q$OHC4>PTI@OR@PFPDAF 8TJ$MFQ4P*EP8Z@PDAF@,QGBX''GQDKF@DA@PDAE00FA@PFCA\A
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   173
@PDA@PDAF!! VE!! Z@PDA@P@a') ; colorMapFromArray:#[144 64 20 152 188 120 168 108 80 172 90 20 172 178 190 180 118 80 180 186 190 184 84 0 184 102 20 188 92 0 188 144 120 188 194 200 192 200 210 196 134 70 196 202 210 200 172 130 200 174 130 200 182 120 204 170 160 204 172 150 208 162 90 208 164 90 208 216 220 212 218 230 212 220 230 216 222 230 220 226 240 224 134 40 224 184 60 224 186 60 224 232 240 228 236 250 236 150 0 236 152 0 236 154 0 236 162 100 240 146 0 240 150 10 244 206 40 244 212 60 248 164 30 248 166 30 252 178 0 252 178 20 252 178 50 252 180 20 252 180 50 252 182 50 252 184 110 252 186 20 252 186 100 252 190 140 255 188 100 255 190 20 255 190 100 255 192 20 255 196 0 255 200 120 255 202 0 255 204 0 255 208 0 255 216 0 255 220 0 255 222 170 255 224 0 255 230 30 255 234 40 255 236 70 255 240 90 255 240 210 255 254 120 255 255 130]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A?#O?A?>7?8_?!!?>G?8_?!!?>3?0G>@O0@@a') ; yourself); yourself]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   174
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   175
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   176
packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   177
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   178
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   179
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   180
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   181
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   182
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   183
    "
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   184
     self packageOpen24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   185
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   186
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   187
    "
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   188
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   189
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   190
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   191
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   192
        constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon'
4012
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   193
        ifAbsentPut:[(Depth8Image new) width: 24; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   194
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@OB (JB (JB (J
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   195
B (JB @@@@@@@@@@@@<JA XFA XFA XFA LHC@@@@@@@@@@@C1,FA XFA XFA XFA XIE0(@@@@@@@@[B XFA XFA XFA XFA@T^GA J@@@@@AHJA XFA XF
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   196
A XFA XBA1(_GQ0J@@@@EQ4F@PXFA XFA XFA XEF2$#G (@@@@UC2@ HB@_G!!<_GQ<_G14/L"0 B @@@@@OK2<,KB,+J2$)JR$)GP(%MB<JB @@@@<0MST3
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   197
L3L0LB</K20$EQ(JJ0(PB @@@@<OCP4MCP0LC@0JB (JFQ LB 8TB @@@@@@B!!(ZF!!(ZF!!(ZF!!(ZFQ PC!!@TB @@@@@@C14^G!!8]GQ4]GA,[F1$VEQTTB @@
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   198
@@@@DA8_G!!8\GA0\GA0\F1$VEQTTB @@@@@@D!!8!!HQ<_G1<]GA0\F1$VEQTTB @@@@@@D"D%IRT"H!!4]GQ4]GQ$VEQTJ@@@@@@@@D"\*JBX&I!!8^G!!8^GQ$V
965c010b4ee9 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3992
diff changeset
   199
EQ@@@@@@@@@@D280J"(''I2@ HA8^GQ$VD@@@@@@@@@@@D3P4LS@-KR4%IBD!!H@,J@@@@@@@@@@@@DP,KB0,KB0,KB0,KB0,@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 24 40 4 56 100 4 60 110 24 86 40 36 60 80 44 44 40 48 70 50 88 46 10 108 56 10 108 58 10 112 58 0 116 60 10 124 66 10 124 72 20 132 74 20 132 76 20 140 78 20 140 82 30 144 82 20 144 86 30 148 92 40 152 96 40 152 98 40 160 104 50 164 106 50 172 116 60 180 124 70 180 128 70 188 132 70 192 140 80 196 140 80 196 142 80 196 150 90 200 154 90 204 148 90 204 150 90 204 158 90 204 162 100 208 158 100 208 166 100 212 156 90 212 170 110 216 162 100 216 164 110 216 174 110 216 178 120 220 170 120 220 182 120 220 186 130 224 184 140 228 190 150 228 200 160 244 224 200]; mask:((Depth1Image new) width: 24; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@O?<@_?<@??>A???C???G??>O??<O??<_??<_??<G??<G??<G??<G??<G??8G??0G?? G??@G?>@') ; yourself); yourself]
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   200
!
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
   201
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   202
sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   203
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   204
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   205
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   206
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   207
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   208
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   209
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   210
     self sortIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   211
     ImageEditor openOnClass:self andSelector:#sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   212
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   213
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   214
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   215
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   216
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   217
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   218
        constantNamed:#'DataSetLabel class sortIndicatorGreyIcon'
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   219
        ifAbsentPut:[(Depth1Image new) width: 7; height: 5; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 5; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@(UJ(b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   220
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   221
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   222
sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   223
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   224
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   225
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   226
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   227
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   228
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   229
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   230
     self sortIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   231
     ImageEditor openOnClass:self andSelector:#sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   232
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   233
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   234
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   235
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   236
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   237
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   238
        constantNamed:'DataSetLabel class sortIndicatorIcon'
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   239
        ifAbsentPut:[(Depth1Image new) width: 7; height: 4; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@B@0 @a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 4; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?''08D@@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   240
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   241
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   242
sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   243
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   244
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   245
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   246
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   247
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   248
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   249
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   250
     self sortReverseIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   251
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   252
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   253
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   254
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   255
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   256
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   257
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   258
        constantNamed:#'DataSetLabel class sortReverseIndicatorGreyIcon'
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   259
        ifAbsentPut:[(Depth1Image new) width: 7; height: 5; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 5; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'*%P(D@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   260
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   261
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   262
sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   263
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   264
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   265
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   266
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   267
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   268
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   269
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   270
     self sortReverseIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   271
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   272
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   273
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   274
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   275
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   276
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   277
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   278
        constantNamed:'DataSetLabel class sortReverseIndicatorIcon'
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   279
        ifAbsentPut:[(Depth1Image new) width: 7; height: 4; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0(@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 4; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'DC!!<? @a') ; yourself); yourself]
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   280
! !
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   281
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   282
!GenericToolbarIconLibrary class methodsFor:'image specs-12x12'!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   283
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   284
padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   285
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   286
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   287
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   288
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   289
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   290
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   291
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   292
     self padLockBlack12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   293
     ImageEditor openOnClass:self andSelector:#padLockBlack12x12Icon
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   294
     Icon flushCachedIcons
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   295
    "
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   296
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   297
    <resource: #image>
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   298
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   299
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   300
        constantNamed:#'GenericToolbarIconLibrary class padLockBlack12x12Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   301
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 63 63 63 127 127 127 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   302
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   303
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   304
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   305
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   306
padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   307
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   308
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   309
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   310
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   311
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   312
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   313
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   314
     self padLockBlue12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   315
     ImageEditor openOnClass:self andSelector:#padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   316
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   317
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   318
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   319
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   320
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   321
        constantNamed:#'GenericToolbarIconLibrary class padLockBlue12x12Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   322
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 255 212 212 255 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   323
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   324
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   325
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   326
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   327
padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   328
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   329
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   330
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   331
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   332
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   333
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   334
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   335
     self padLockGray12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   336
     ImageEditor openOnClass:self andSelector:#padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   337
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   338
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   339
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   340
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   341
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   342
        constantNamed:#'GenericToolbarIconLibrary class padLockGray12x12Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   343
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 128 212 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   344
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   345
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   346
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   347
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   348
padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   349
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   350
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   351
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   352
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   353
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   354
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   355
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   356
     self padLockGreen12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   357
     ImageEditor openOnClass:self andSelector:#padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   358
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   359
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   360
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   361
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   362
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
   363
        constantNamed:#'GenericToolbarIconLibrary class padLockGreen12x12Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   364
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 255 128 212 255 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   365
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   366
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   367
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   368
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   369
padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   370
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   371
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   372
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   373
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   374
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   375
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   376
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   377
     self padLockRed12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   378
     ImageEditor openOnClass:self andSelector:#padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   379
     Icon flushCachedIcons
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   380
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   381
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   382
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   383
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   384
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   385
	constantNamed:#'GenericToolbarIconLibrary class padLockRed12x12Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   386
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 255 128 128 255 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   387
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   388
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   389
! !
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   390
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   391
!GenericToolbarIconLibrary class methodsFor:'image specs-15x15'!
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   392
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   393
smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   394
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   395
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   396
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   397
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   398
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   399
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   400
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   401
     self smiley_angry inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   402
     ImageEditor openOnClass:self andSelector:#smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   403
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   404
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   405
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   406
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   407
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   408
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   409
	constantNamed:#'GenericToolbarIconLibrary class smiley_angry'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   410
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   411
C 8NC @FA XHB@@NC 8NC 8N@@LC@0,KB0,@C 8NC 8DAP\GA0\G@0,L@@8NC XEA0\IBP,G@ $IC@@NC PKA0\CB0$JBP(EAP4NA HG@0LC@@TI@ @KB00H
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   412
B@,C@0LE@@,CB0@AB0DHB@,C@0LCAPLGA0DEAP(HB@,GA0LCAPTKB0DEAP(HB@DGA0LJ@@4MCP@L@P0HC 4KA0,@B TAB 0@C@XNC  AA0TEB0,EAPDLC@ N
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   413
C 8M@PTKB0TE@P0LA 8NC 8NB@4L@P(LC@XHC 8NC 8NC 8HB@ HB@8NC 8N') ; colorMapFromArray:#[0 0 0 255 28 4 255 32 8 255 92 76 109 8 0 255 48 24 72 4 0 255 108 92 44 4 0 89 60 56 255 24 0 255 68 48 208 24 0 85 8 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   414
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   415
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   416
smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   417
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   418
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   419
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   420
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   421
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   422
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   423
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   424
     self smiley_biggrin inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   425
     ImageEditor openOnClass:self andSelector:#smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   426
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   427
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   428
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   429
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   430
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   431
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   432
	constantNamed:#'GenericToolbarIconLibrary class smiley_biggrin'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   433
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   434
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   435
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@@@@@@@@@@@@PD@@@DA@@HB@ HB@ H@@PD@@ @A@P@B@ HB@ @A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   436
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 0 255 0 255 255 255]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   437
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   438
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   439
smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   440
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   441
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   442
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   443
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   444
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   445
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   446
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   447
     self smiley_cool inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   448
     ImageEditor openOnClass:self andSelector:#smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   449
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   450
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   451
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   452
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   453
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   454
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   455
	constantNamed:#'GenericToolbarIconLibrary class smiley_cool'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   456
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   457
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@@@@@@@@@H@@@@@@@@@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   458
@@HB@@@@@@@@@@@@@ H@@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ H@@@@@@@HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   459
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 0 255 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   460
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   461
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   462
smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   463
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   464
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   465
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   466
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   467
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   468
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   469
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   470
     self smiley_eek inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   471
     ImageEditor openOnClass:self andSelector:#smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   472
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   473
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   474
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   475
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   476
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   477
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   478
	constantNamed:#'GenericToolbarIconLibrary class smiley_eek'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   479
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   480
@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@0@@@@@@@@@@@0LC@0LC@0LC@@@@@@@C@0LC@0LC@0LC@0@@@@@C@0LC@0LC@0LC@0@@@@LC@0@@@0LC@@@C@0L@
3299
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   481
@@LC@0HB@0LC@ HC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@@C@0LC@0@C@0LC@0@@@@@C@0LC@@@@@0LC@0@@
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   482
@@@@@0LC@0@C@0LC@@@@@@@@@@@C@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 48 48 48 255 157 167]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   483
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   484
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   485
smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   486
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   487
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   488
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   489
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   490
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   491
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   492
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   493
     self smiley_frown inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   494
     ImageEditor openOnClass:self andSelector:#smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   495
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   496
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   497
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   498
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   499
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   500
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   501
	constantNamed:#'GenericToolbarIconLibrary class smiley_frown'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   502
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   503
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ HB@ HB@ HB@ @@@@HB@ @@@ HB@@@B@ H@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   504
@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ H@@@@@@@HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ HB@ HB@ HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   505
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 163 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   506
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   507
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   508
smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   509
    "This resource specification was automatically generated
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   510
     by the ImageEditor of ST/X."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   511
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   512
    "Do not manually edit this!! If it is corrupted,
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   513
     the ImageEditor may not be able to read the specification."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   514
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   515
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   516
     self smiley_mhmh inspect
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   517
     ImageEditor openOnClass:self andSelector:#smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   518
     Icon flushCachedIcons
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   519
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   520
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   521
    <resource: #image>
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   522
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   523
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   524
	constantNamed:#'GenericToolbarIconLibrary class smiley_mhmh'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   525
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   526
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@HB@ @@@ HB@@@B@ H@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   527
@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ @@@@@B@ H@@@@@@@HB@ @@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   528
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 222 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   529
!
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   530
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   531
smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   532
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   533
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   534
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   535
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   536
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   537
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   538
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   539
     self smiley_ok inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   540
     ImageEditor openOnClass:self andSelector:#smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   541
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   542
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   543
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   544
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   545
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   546
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   547
	constantNamed:#'GenericToolbarIconLibrary class smiley_ok'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   548
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   549
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   550
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@ @A@PDA@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   551
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   552
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   553
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   554
smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   555
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   556
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   557
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   558
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   559
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   560
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   561
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   562
     self smiley_smile inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   563
     ImageEditor openOnClass:self andSelector:#smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   564
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   565
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   566
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   567
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   568
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   569
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   570
	constantNamed:#'GenericToolbarIconLibrary class smiley_smile'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   571
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   572
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   573
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@DA@PDA@PD@@PD@@ @A@P@A@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   574
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   575
! !
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   576
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   577
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   578
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   581
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   582
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   585
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   586
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
     self back16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
     ImageEditor openOnClass:self andSelector:#back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   589
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   590
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   592
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   595
        constantNamed:#'GenericToolbarIconLibrary class back16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   596
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   597
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@PX@@@@@@@@@@@@@@@@@@PXE@@@@@@@@@@@@@@@@@PXEAP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
@@@@@@@@@@@@@PXEAPTF@ HBA @@@@@@@PXEAPTEAPTEAPP@@@@@@ XEAPTEAPTEAPTD@@@@@@@CA@TEAPTEAPTEA@@@@@@@@@LDAPTEA@PDA@P@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
@0PEAP@@@@@@@@@@@@@@@@@CA@T@@@@@@@@@@@@@@@@@@@LD@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 192 255 255 0 64 64 0 128 128 0 192 192 0 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @N@A8@O A?<O?1??O?<_?0??A?<C8@G @N@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   607
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
     self bottom16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   618
        constantNamed:#'GenericToolbarIconLibrary class bottom16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   619
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
@@@@@@@@@@@@@DQDQD@@@@@@QUY"P@@@@@AEH"M@@@@@@DT"H4@@@@@@Q"H#P@@@QDQAH"MDQDAFD"H"H"H0P@Q!!H"H"H0P@@DXRH"H0P@@@AFD"H0P@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
Q!!H0P@@@@@@DX0P@@@@@@@A@P@@@@@QDQDQDQDP@ADQDQDQDQ@@b') ; colorMapFromArray:#[0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C G?<_?0b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   624
browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   625
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   626
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   627
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   628
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   629
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   630
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   631
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   632
     self browseIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   633
     ImageEditor openOnClass:self andSelector:#browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   634
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   635
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   636
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   637
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   638
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   639
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   640
	constantNamed:'GenericToolbarIconLibrary class browseIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   641
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   642
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDPXB@@@@D3L0XCT@@@@SL0Y MP@@@BUPY!!@@@@@@@@Y!!E&X@@@@@Y!!E&X@@@@@@@A&X@@@@@@ADFXADR@@@@
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   643
E@XDQDT@@@@ XEUUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 248 252 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@HG?8_?!!?>G?8_?1?>A?0O?8_?!!?>G?8_? P@@@@b') ; yourself); yourself]
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   644
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
   645
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   646
centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   647
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   648
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   649
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
     self centerAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   656
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   661
        constantNamed:#'GenericToolbarIconLibrary class centerAdjust16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   662
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUAU@@UPUUUUTD@@@AAUUUUPUP@ETEUUUUA@@@@PUUUUTET@AUAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   664
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   668
colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   669
    "This resource specification was automatically generated
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   670
     by the ImageEditor of ST/X."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   671
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   672
    "Do not manually edit this!! If it is corrupted,
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   673
     the ImageEditor may not be able to read the specification."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   674
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   675
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   676
     self colorHistory16x16Icon inspect
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   677
     ImageEditor openOnClass:self andSelector:#colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   678
     Icon flushCachedIcons
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   679
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   680
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   681
    <resource: #image>
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   682
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   683
    ^Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   684
        constantNamed:'GenericToolbarIconLibrary class colorHistory16x16Icon'
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   685
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   686
@@@@@@@@@@@EUUUUT@@@@@UUUUUP@@@@AUUUUU@@@@@EUUUUTB@@@@UUUUUPH@@@@@@@@@@ @@@@@"H"H"@0@@@BH"H"HC@@@@@@@@@@L@@@@@L3L3L0P@@@
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   687
@3L3L3A@@@@@@@@@@D@@@@@DQDQDP@@@@@QDQDQ@@@@@@@@@@@@b') ; colorMapFromArray:#[1 104 205 255 255 255 255 0 0 0 255 0 0 0 255 255 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b') ; yourself); yourself]
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   688
!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
   689
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
     self configure16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   700
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   701
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   706
        constantNamed:#'GenericToolbarIconLibrary class configure16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   707
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
@@@@@@@@@@@@@DH3\@@@@@@@ARH5\@@@@@@@ARM0@@@A\@DPH3\@@@D3LBH3M0@@@!!D3L3L3\@A!!H!!D3L3L7\@T1H"I1D3L7@@T5U2H!!D3L@@@A5UWH!!D0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
@@@@L7H!!@@@@@@@@L7H@@@@@@@@@L0@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8@_8@?09?C?>O?8??;?????_?<_?0O?@C<@C0@C@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   710
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
     self copy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   721
     ImageEditor openOnClass:self andSelector:#copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   723
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   724
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   725
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   726
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   727
        constantNamed:#'GenericToolbarIconLibrary class copy16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   728
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@* @@@J( @@BBEUP@*)*%@H@Z)$B*&BUP A**$J*X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
     self cut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
     ImageEditor openOnClass:self andSelector:#cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   749
        constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   750
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@E@@W@GR@%HBT IL@X@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   756
cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   757
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   760
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   761
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   762
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   763
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   764
     self cut16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   766
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   768
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   769
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   770
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   771
        constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   772
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@EUP@@A*%@@@Z)$@@FBUP@A**$@@X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   773
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   776
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   778
delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   779
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   780
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   781
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   782
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   783
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   784
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   785
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   786
     self delete16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   787
     ImageEditor openOnClass:self andSelector:#delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   788
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   789
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   790
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   791
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   792
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   793
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   794
        constantNamed:'GenericToolbarIconLibrary class delete16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   795
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@'' LOA N\@_ @<@C0@_@C&@\LC P^@ 0@@@D@@@b') ; colorMapFromArray:#[255 255 255 65 65 65]; yourself]
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   796
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
   797
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   798
desktop16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   799
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   800
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   801
    ^self desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   802
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   803
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   804
desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   805
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   806
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   807
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   808
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   809
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   810
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   811
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   812
     self desktop16x16Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   813
     ImageEditor openOnClass:self andSelector:#desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   814
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   815
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   816
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   817
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   818
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   819
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   820
        constantNamed:'GenericToolbarIconLibrary class desktop16x16Icon2'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   821
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   822
@@@@@@@@@@@@@@@@@@@@@BL#H2L#_!!HSW@LDJB]J@%,#EF<9 %:CW44;JPY S&E-H1Q@]5L.T%EPA8U4X  =_2NAPP)%"A0?]R0I!!2<]F D#WP-6"W!!&UDH0
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   823
G 19CX(AH55#KV]UP3D_"7(NU3M(@RM]J39$U$P2HH1E_CQY^0D#WQ^D!!&$!!C85*VAAGDTXAH54YRBH[# >MZ''4PQ1E+@RL5RBTUH$=OS4=OS4=OS0D#OBH:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   824
J''H@@@@@@@@@@@@AH3Y1\!!YKV%)ZV%)ZV%)Z@V0$RX@&\D0ENF87_0DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[53 53 53 165 184 209 191 203 219 217 221 225 225 228 230 222 226 231 59 101 158 67 116 189 82 134 196 72 125 201 80 118 190 76 115 189 82 141 218 93 152 223 87 149 230 56 122 226 91 156 241 103 168 246 176 189 203 189 200 211 8 51 135 118 198 49 16 82 167 41 81 155 255 255 255 107 153 185 99 137 181 102 158 195 71 118 197 87 142 207 77 136 216 60 122 218 62 126 225 47 112 220 52 136 255 163 179 196 173 187 202 247 62 14 214 219 224 220 224 230 227 229 232 56 98 156 255 218 89 58 102 183 64 118 197 62 107 191 83 123 191 82 137 205 64 123 210 58 119 216 55 120 222 97 160 234 95 159 239 149 151 153 58 58 58 179 195 214 210 218 226 14 57 138 24 178 255 46 89 152 117 120 123 95 132 173 52 100 190 67 118 197 81 118 187 82 118 188 61 119 208 57 116 213 52 113 217 84 148 234 111 155 206 97 162 243 114 178 250 186 198 209 207 215 226 41 142 195 227 230 232 41 84 150 68 109 161 132 133 133 70 117 189 74 119 191 79 120 191 86 125 192 63 118 208 59 114 206 52 111 210 92 154 232 85 150 238 101 165 242 55 55 55 176 193 214 204 211 218 8 52 137 27 70 143 37 80 149 63 105 160 89 125 167 77 129 193 68 109 186 53 106 201 79 120 194 65 117 205 62 112 200 107 149 198 45 106 211 71 137 232 111 155 207 164 180 197 171 189 212 194 206 221 11 55 137 224 227 229 60 124 168 33 110 194 0 0 0 72 123 192 65 117 197 71 113 191 84 121 190 68 116 201 88 147 220 81 143 227 110 154 204 90 154 237 84 150 238 165 181 198 167 186 210 201 209 217 8 51 136 22 66 143 32 75 147 36 80 161 71 121 190 45 101 200 77 132 203 76 120 196 71 116 198 104 144 191 68 131 221 70 135 228 63 129 229 48 112 220]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C??????????????????????????????????0@@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   825
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   826
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   827
diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   828
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   829
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   830
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   831
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   832
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   833
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   834
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   835
     self diff16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   836
     ImageEditor openOnClass:self andSelector:#diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   837
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   838
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   839
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   840
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   841
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   842
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   843
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   844
	ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   845
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA XFA XD@@@@@@@@@@PFA XF@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XF@@XFA XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   846
@@@@@@@@@@PFA @FA XFA@@@@@@@@@@DA X@A XFA P@@@@@@@@@A@XF@@XFA XD@@@@@@@@@@PFA X@A XFA@@@@@@@@@@DA XFA @@@@@@@@@@@@@@A@XF
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   847
A XFA XD@@@@@@@@@@PFA XFA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   848
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   849
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   850
diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   851
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   852
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   853
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   854
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   855
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   856
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   857
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   858
     self diff16x16Icon2 inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   859
     ImageEditor openOnClass:self andSelector:#diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   860
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   861
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   862
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   863
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   864
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   865
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   866
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   867
	ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   868
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA PFA XD@@@@@@@@@@PFA0XD@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XH@@PFB@XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   869
@@@@@@@@@@PFA @DA XFA@@@@@@@@@@DA  @A@XHA P@@@@@@@@@A@XF@@PFA XD@@@@@@@@@@PFA0X@A  FA@@@@@@@@@@DA XFA@@@@@@@@@@@@@@@A@XH
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   870
A PFB@XD@@@@@@@@@@PFA XDA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255 248 0 0 0 252 0]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   871
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   872
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   873
doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   874
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   875
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   877
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   878
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   879
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   880
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   881
     self doIt16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   882
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   883
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   884
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   885
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   886
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   887
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   888
        constantNamed:#'GenericToolbarIconLibrary class doIt16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   889
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@P@@@@P@@@@T@@@@W@@@@W5P@@W5P@@@EP@@@AP@@@@P@@@@P@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@H@A @N@A0@O@A?0O>A?0O>@C0@N@A0@F@@P@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   890
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   892
down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   893
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   894
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   896
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   897
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   898
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   899
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   900
     self down16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   901
     ImageEditor openOnClass:self andSelector:#down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   902
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   903
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   904
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   905
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   907
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   908
        constantNamed:#'GenericToolbarIconLibrary class down16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   909
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   910
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   911
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   912
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   913
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   914
edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   915
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   916
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   917
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   918
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   919
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   920
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   921
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   922
     self edit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   923
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   924
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   925
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   926
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   927
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   928
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   929
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   930
        constantNamed:#'GenericToolbarIconLibrary class edit16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   931
        ifAbsentPut:[(Depth8Image new) width: 16; height: 17; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   932
@@@@@@@@@@@@@@@@@@@@@@@@B (JB (JB (JB (@APT@@@(IBP$IA $IBP$IAPTC@@@JBP$IBPXIBP$IAPTC@0@@B XFA XFA XFAPTC@0L@@@(IBP$IA $I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   933
APTC@0LD@@@JBP$IBPXIAPTC@0LDB0@@B XFA XFAP C@0LD@ @@@@(IBP$I@@ H@0LD@ @@@@@JBP$IBPTHB@ HB0D@@@@@B XFA @HB@ DA@@A@@@@@@(I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   934
BP$GB@PDA (I@P@@@@@JBP$G@ ,FB $IBPD@@@@@B @@@P@@@@@@@@@A@@@@@@(IBP$I@@$IBP$I@P@@@@HA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   935
@@@b') ; colorMapFromArray:#[160 160 160 0 0 0 48 48 48 255 128 0 192 88 0 255 168 88 195 195 195 88 88 88 255 220 168 255 255 255 220 220 220 64 0 0]; mask:((Depth1Image new) width: 16; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?>3??O?<??3??O?<??#?<O?0??C?<O?0??C?<_?0@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   936
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   937
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   938
editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   939
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   940
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   941
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   942
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   943
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   944
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   945
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   946
     self editcopy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   947
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   948
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   949
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   950
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   951
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   953
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   954
        constantNamed:#'GenericToolbarIconLibrary class editcopy16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   955
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   956
UUUU@@@@@@ATQDUP@@@@@EQDQRT@@@@@U@AEP%@@@@ATQDUUUUT@@EP@QCL5QU@@UDQDIBUEEPAT@@P@ITUATEQDIBH%QUUUU@A@@BUDL3UTIBH"ITQDEUUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   957
UUUPA@AE@@@@UDQDQDT@@@AT@D@@QP@@@EQDQDQE@@@@UUUUUUTb') ; colorMapFromArray:#[48 48 48 220 220 220 255 255 192 160 160 160 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?@C>@O<@?8C?<O?8??3??/??????????@?<C?0O?@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   958
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   960
editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   961
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   962
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   965
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   966
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   967
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   968
     self editcut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   969
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   970
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   971
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   972
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   973
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   975
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   976
        constantNamed:#'GenericToolbarIconLibrary class editcut16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   977
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@@$@@@@CP@@@@M@@@@@4@@@@CP@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 220 220 220 128 128 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A8A,0O1!!9"OC=8C?@C8@O C?@?^FH<1!!;LC7 F@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   978
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   979
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   980
editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
     self editpaste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   990
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   996
        constantNamed:#'GenericToolbarIconLibrary class editpaste16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
   997
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   998
@@@@@Q@@@@@ADQDP@QDQ@AY&XPDPE&XPEFXP@@@AY!!@TY!!DQDQE&DAQ&Y!!H"HQXPEFY&D"H!!TQ@TY&XRL2D%DQQ&Y!!H"HQDQEFY&D#L"Y&DTY&XRH"IRTQQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
Y!!H3L#MQEFY&D"IRUUDVY&XRL2L3TPDQDQIRUUUQ@@@@DQDQDQDb') ; colorMapFromArray:#[192 192 0 0 0 0 255 255 255 48 48 48 220 220 220 255 255 192 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@XA??O?>??;??/?>??;??????????????????7??@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1003
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1004
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1009
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1010
     self edittrash16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1014
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1016
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1018
        constantNamed:#'GenericToolbarIconLibrary class edittrash16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1019
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
@@@@@0@@@@@@@@N@H@@@@@@QE&Y@Y(@@@C!!!!DVX"H@@@ACNH"DP@@@@H"DP"Q0@@@@ XNDP''@@@@BA 8QB\@@@@HFC!!DI0@@@@ XNDP''@@@@BA 8QB\@@@@H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1021
FC!!DI0@@@@ XNDP''@@@@@1 8QB\@@@@@@3"D@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 93 93 93 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A8@?>G?<_?0?>C?8O? ?>C?8O? ?>C?8O? ?>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1022
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1023
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
erase16x16Icon
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1025
    <resource: #programImage>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1026
4040
01e4930b262f changed: #erase16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4012
diff changeset
  1027
    ^ self erase16x16Icon2
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1028
!
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1029
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1030
erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1031
    "This resource specification was automatically generated
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1032
     by the ImageEditor of ST/X."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1033
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1034
    "Do not manually edit this!! If it is corrupted,
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1035
     the ImageEditor may not be able to read the specification."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1036
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1037
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1038
     self erase16x16Icon1 inspect
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1039
     ImageEditor openOnClass:self andSelector:#erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1040
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1041
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1042
    <resource: #image>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1043
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1044
    ^Icon
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1045
        constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon1'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1046
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1047
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1048
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1049
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1050
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1051
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1052
erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1056
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1058
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1059
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
     self erase16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1061
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1062
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1063
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1065
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1066
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1067
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1068
        constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1069
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1070
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@3@@@C@@@@@0@3@C@A@@@@@ @0@A@@@@@@H@@A@@@@@@@C@C@@@@@@@C@@L@@@@@@C@PHC@@@@@@LP@B@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1071
L@@@@ @@@@@1@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 0 0 64 0 0 128 0 0 255 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@HCA0_O@_8@?@A8@O A7@FL@0XC@ H@@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1075
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1076
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1078
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1079
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1080
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1081
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1082
     self exec16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1083
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1084
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1089
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1090
        constantNamed:#'GenericToolbarIconLibrary class exec16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1091
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1092
@@@@A7@@@@@@A7A9%0]0@@A9A0Q@\I\@@GBR@3@)A0@@A2L8NCI0@@]9@8H# I]0^T@8L@"#AI]2BR"(!!ZJPI0\Q$()XJQE0@GII$"&TI0@GARD)$!!IP\@^P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
E7@G\P%0@G]0^U\G]0@@@@A1I0@@@@@@@@]0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[160 160 160 88 88 88 128 128 128 255 168 88 195 195 195 255 255 255 93 93 93 0 0 0 255 220 168 220 220 220 255 255 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@X@[6C?<O?0_>G?>?''???7?>O?1??''?>N=0C0@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1097
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1098
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1100
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1101
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1102
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1103
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1104
     self exit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1105
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1106
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1107
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1108
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1109
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1110
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1111
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1112
        constantNamed:#'GenericToolbarIconLibrary class exit16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1113
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1114
@@@@@@@@@@@@@@@@@@@@@@@@@QDQ@@@@@@DRH"H"@@@@@RH H"H@@@@RH"@"H%@@@AH"HBH"T@@@D"H H"IP@@@RH"@"H%@@@AH"HBH"T@@@@"H H"TC@@@B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1115
H"H"UP@@@@@EUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 93 93 93 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G0A?0O? ?>G?<_?1??G?<_?0??C?8G?@G0@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1116
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1118
fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1119
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1120
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1122
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1124
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1125
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
     self fileNew16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1128
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1133
        constantNamed:#'GenericToolbarIconLibrary class fileNew16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1134
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:' @F@@X@A#<FO4X?A#?&O>X?9#?&O>X?9#?&O>X@A0@Db') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1135
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1136
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1137
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1138
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1139
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1140
fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1141
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1143
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1144
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1145
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1146
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1147
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1148
     self fileOpen16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1149
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1150
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1151
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1152
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1153
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1154
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1155
        constantNamed:#'GenericToolbarIconLibrary class fileOpen16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1156
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0@@@@0@@@@@@@@@@@@@@@@@@@@@]@@@@M7]0@A7]4@@7P@@@GR**(CR**(@R**(@B**(@@@@@@@@@@@@<@@@@0@a') ; colorMapFromArray:#[0 0 0 255 255 0 128 128 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1158
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1159
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1160
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1161
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1162
fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1163
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1164
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1165
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1166
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1167
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1168
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1169
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1170
     self fileSave16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1171
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1172
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1173
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1174
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1175
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1176
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1177
        constantNamed:#'GenericToolbarIconLibrary class fileSave16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1178
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0@@@@0@@@@@D**( AJ**@@R**!!@D**(PAJ**D@R**!!@E@@APAUUUT@T@@A@E@@(PAP@JD@T@B!!@@@@@@@@@@@0@a') ; colorMapFromArray:#[0 0 0 128 128 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1180
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1184
fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1186
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1187
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1189
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1190
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1191
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
     self fileclose16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1193
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1194
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1195
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1196
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1197
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1199
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1200
        constantNamed:#'GenericToolbarIconLibrary class fileclose16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1201
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1203
@"@@H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 93 93 93 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@O C? _?A?<O?8??#?>O?8??!!?<G?0O>@O @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1204
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1205
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1206
finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1213
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
     self finish16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1222
        constantNamed:#'GenericToolbarIconLibrary class finish16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1223
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
@@@@@@@@@@@@@@AD@@@@@@@@@DY@@@AD@@@@P6P@@DP@@@ABM$@@Q@QDQDH#Y@ADAEUVL"H6PDPDT"H"H"M$Q@Q"H"H"H!!ADAFH"H"H!!ADPDHQDRH!!A@Q@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
QDH!!A@AD@@@@P!!A@@DP@@@AAA@@@Q@@@@DA@@@AD@@@@Q@@@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@C@@NC@<LC87?3_?-??7??_?=?>7?3@>LC00NC@0@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1231
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
     self flagRed16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1238
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1239
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1244
        constantNamed:#'GenericToolbarIconLibrary class flagRed16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1245
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
@@@@@@@@@@@@@@@F@@@@@@@@@FY @@@@@@@FA&@@@@@@Y&APY @@@FXEUPI&@@@@YUUSIBY @@A%T3IBI&@@@@X4QBI&Y @@A$QBI A&@@@@YBY @@Y @@@F
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1247
X@@@A&@@@@@@@@@@Y @@@@@@@@A&@@@@@@@@@@Y @@@@@@@@A&@b') ; colorMapFromArray:#[195 195 195 93 93 93 192 0 0 255 192 192 255 0 0 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A8@?0O?@?>C?8G?0_3@>FA X@@0@C@@F@@Xb') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1248
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1249
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1250
formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1251
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1252
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1253
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1254
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1255
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1256
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1257
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1258
     self formatCode16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1263
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1264
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1265
        constantNamed:#'GenericToolbarIconLibrary class formatCode16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1266
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@UTEUUUUAP@AUPUUUUTE@@AUAUUUUPUU@ATEUUUUAUT@EPUUUUTE@@@UAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1267
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1268
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1269
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1270
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1272
forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1273
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1274
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1275
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1276
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1277
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1278
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1279
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1280
     self forward16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1284
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1285
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1288
        constantNamed:#'GenericToolbarIconLibrary class forward16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1289
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1290
@@@@@@@@@@@@@@@BH@@@@@@@@@IB@@@@@@@@@!!P @@@@@@@B@TH@@@@"H"H@EB@@@BL3PP@AP @@H0@@@@@TH@@$@@@@@@YR@BP@@@@@YR@@HFY&@@YR@@@"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1291
H"H@YR@@@@@@@ YR@@@@@@@BYR@@@@@@@@IR@@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 0 64 64 0 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @G@@^@A<C?8O?0??#??O?8??C?8@_@A8@G@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1296
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1302
     self goto16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1310
        constantNamed:#'GenericToolbarIconLibrary class goto16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1311
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@E@@@@TD@@@PD@@@PA@@@DA@@@@U@@@E@@@@DD@D@@T@TP@@@PD@@@PD@@@DA@@@AA@@@DE@@@DP@@@AT@@@@a') ; colorMapFromArray:#[64 0 0 0 0 0 0 192 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@>@G0@?@C8@G@C@@^B@0<@G0@>@C8@O@BX@\@A0@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1314
grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1315
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1316
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1317
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1318
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1319
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1320
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1321
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1322
     self grid16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1323
     ImageEditor openOnClass:self andSelector:#grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1324
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1325
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1326
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1327
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1328
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1329
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1330
        constantNamed:'GenericToolbarIconLibrary class grid16x16Icon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1331
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1332
H"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1333
&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"Hb') ; colorMapFromArray:#[32 12 48 32 56 216 248 184 112 40 36 32 32 48 92 40 12 8 8 0 144 24 60 216 88 36 120 248 248 248]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1334
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1335
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1336
gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1337
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1338
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1339
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1340
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1341
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1342
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1343
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1344
     self gridAlign16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1345
     ImageEditor openOnClass:self andSelector:#gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1346
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1347
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1348
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1349
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1350
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1351
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1352
        constantNamed:'GenericToolbarIconLibrary class gridAlign16x16Icon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1353
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1354
H"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)\"&R&R&R&RFBH"H"H"H"\KH)$)$)$)]J$"&WFR&R^K&RH"]GH"]+H"H)$*!!9\C$)$"&R
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1355
&$]E&R&RH"H"U@H"H"H)$)$#$)$)$"&R&R&R&R&RH"H"H"H"H"Hb') ; colorMapFromArray:#[32 12 48 32 56 216 248 184 112 40 36 32 32 48 92 40 12 8 8 0 144 24 60 216 88 36 120 248 248 248 32 40 32 32 16 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1356
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1357
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1358
history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1359
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1360
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1361
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1362
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1363
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1364
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1365
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1366
     self history16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1367
     ImageEditor openOnClass:self andSelector:#history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1368
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1369
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1370
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1371
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1372
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1373
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1374
	constantNamed:#'GenericToolbarIconLibrary class history16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1375
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1376
@@@@@@@@@@@ADQDQD@@@@@DQDQDP@@@@@QDQDQ@@@@@ADQDQDA@@@@DQDQDPD@@@@@@@@@@P@@@@@QDQDQ@P@@@ADQDQDA@@@@@@@@@@D@@@@@DQDQDPD@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1377
@QDQDQ@P@@@@@@@@@A@@@@@ADQDQD@@@@@DQDQDP@@@@@@@@@@@b') ; colorMapFromArray:#[1 104 205 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1378
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1379
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1381
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1382
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1386
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
     self idea16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1396
        constantNamed:#'GenericToolbarIconLibrary class idea16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1397
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
@@@BH"H@@@@@@BAUTB@@@@@BA*V @ @@@BAZU%)PH@@@HJUVV*@ @@@ )VQ%(B@@@BA&I T@H@@@@ T H@H@@@@@H@H@H@@@@@@*@ ( @@@@@@HB@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1399
@"L"@@@@@@@BNXH@@@@@@@JI\ @@@@@@@!! R@@@@@@@@H"@@@@@b') ; colorMapFromArray:#[255 255 0 48 48 48 0 0 0 220 220 220 255 255 255 255 220 168 255 255 192 160 160 160 88 88 88 128 128 128 255 168 88]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@O8A?0O? ?>C?8O? _<@? C>@G0@_@A<@G0@_@@8@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1402
indent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1403
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1404
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1405
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1406
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1407
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1408
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1409
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1410
     self indent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1411
     ImageEditor openOnClass:self andSelector:#indent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1412
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1413
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1414
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1415
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1416
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1417
    ^Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1418
        constantNamed:'GenericToolbarIconLibrary class indent16x16Icon'
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1419
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1420
@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HC@0LC@@@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1421
@@@@@@@@@0LB@ LC@0@@@@@@@@@@@@HB@ HB@0LC@0LC@0LC@0LC@0HB@0LC@@@@@@@@@@@@@0LB@0LC@0@@@@@@@@@@@@LC@0LC@0LC@0LC@0LC@0LC@0@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1422
@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 220 226 243 0 0 128 0 0 0]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?L_?8@CG?H_<@@C?@@@@?0@@@@@@b') ; yourself); yourself]
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1423
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1424
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1425
leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1426
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1427
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1431
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1432
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1433
     self leftAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1434
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1436
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1437
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1438
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1439
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1440
        constantNamed:#'GenericToolbarIconLibrary class leftAdjust16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1441
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUA@@AUPUUUUTD@@@AAUUUUPP@@UTEUUUUA@@@@PUUUUTD@@EUAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1447
leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1448
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1449
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1450
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1451
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1452
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1453
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1454
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1455
     self leftDown16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1456
     ImageEditor openOnClass:self andSelector:#leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1457
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1458
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1459
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1460
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1461
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1462
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1463
	constantNamed:#'GenericToolbarIconLibrary class leftDown16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1464
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1465
@@@@@@@@@@@@@EUUUUUUT@@@T@@@@@AP@@APL3L3L5@@@E@3MDQDT@@@TCL4UUUP@@ARL3QP@@@@@EL3ME@@@@UUT3L3UUT@@E@#L3MAT@@@APH3MAT@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1466
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O? ?>C?8O? ?>C>@O8G?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1467
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1468
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1476
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1477
     self lock16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1485
        constantNamed:#'GenericToolbarIconLibrary class lock16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1486
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
@@@@]7\@@@@@@@\Z*(@@@@@@]''"G)0@@@@A: @_H@@@@@G2@A< @@@@@]5@G1P@@@@^H!!RJH @@@\3)&E$M5@@A3@DP4L7T@@HN0QDL3]P@@!!+DVZ*)5@@BF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
,QY&*''T@@E*1E&**]P@@U+DVZ*M5@@AS@DP4L7T@@@VBJH"XT@@b') ; colorMapFromArray:#[255 220 168 220 220 220 64 64 0 128 128 0 192 192 0 0 0 0 195 195 195 88 88 88 48 48 48 64 0 0 160 160 160 255 255 255 128 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@<@G8@?0C''@N\@90G? ??C?<O?0??C?<O?0??C?<G? b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1491
palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1492
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1493
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1494
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1495
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1496
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1497
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1498
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1499
     self palette16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1500
     ImageEditor openOnClass:self andSelector:#palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1501
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1502
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1503
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1504
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1505
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1506
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1507
	constantNamed:#'GenericToolbarIconLibrary class palette16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1508
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1509
@PDA@PDAHB@ H@HA@PDA@PD@@PDBH2L#H2L#C@DA@PDA@PH#H2L#D@8NH2LB@PDA@PD]H2L#H1@NC"L#C@DA@PD#F0LFA"L#H2L#H00A@PDBH2LFB!!D#H2L#
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1510
H14B@PDAH2L#H2LDH2L#H2LA@PDA@RL#F"H"H2L#H2L#GPHA@PD#H2H"H"L#H2L#H2L#H2LBH2L#H2L#H2L#C@HBCBL#H2@#H2LMGA0#H0HB@ H#H2LBH2L#
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1511
G@<\H2LB@PDBH2L#@PH#H2L\GBL#C@HBGRL#H0DA@ 0#H2L#H2L#H2L#H2@A@PDACBL#H2L#H2L#H2@@@PDA@P@BGRL#H2L#C@@@@P@a') ; colorMapFromArray:#[107 57 57 247 247 247 198 189 189 16 49 239 115 74 0 156 99 0 8 49 255 173 41 0 156 57 0 107 82 0 49 49 173 148 57 0 165 115 0 173 132 0 247 8 0 214 206 0 239 8 0 74 49 123 16 115 0 156 49 0 198 33 0 41 99 0 181 148 0 231 239 0 214 198 198 115 57 41 33 107 0 132 57 8 206 198 0 140 99 57 99 57 74 132 66 0 156 140 123 33 49 206 0 153 0 140 66 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@>@O<C?8O?!!?>O?8?>C?>O?????????O_?<??0?>A? b') ; yourself); yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1512
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1513
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
     self paste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1523
     ImageEditor openOnClass:self andSelector:#paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1524
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1529
        constantNamed:#'GenericToolbarIconLibrary class paste16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1530
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@AWTF@FA5\@@G\CL3L0]P@@U0@@@@A7@@A5]WU5]WT@@E]WV**** @@]WU:DQDZ(@AWU5(QDQ(Z@GU5^!!@@F** U5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1539
pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1540
    "This resource specification was automatically generated
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1541
     by the ImageEditor of ST/X."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1542
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1543
    "Do not manually edit this!! If it is corrupted,
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1544
     the ImageEditor may not be able to read the specification."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1546
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1547
     self pipette16x16Icon inspect
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1548
     ImageEditor openOnClass:self andSelector:#pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1549
     Icon flushCachedIcons
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1550
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1551
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1552
    <resource: #image>
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1553
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1554
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1555
	constantNamed:#'GenericToolbarIconLibrary class pipette16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1556
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1557
FQ$[F18^G!!8^G!!8^J"(^G!!\YF1,[G!!8^G!!8^IR (C!!$WFQ([F18^G!!8^IR$*J"TYE1\YF!!,[G!!8YIR *J"$SFQ\WFQ([F1,[IR *J"$TFQ$WE1\YF!!,YFR $
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1558
J" JFQ$YE1\WFQ$YFQ@]JAHCFQ$YFQXWE1\WE1T#I \LFQ$YFQ$UE!!\WE1X&I $YFQ$YFQ$YEQXVFQD&H  YFQ$YFQ$YFQTUEQD&HPPYFQ$YFQ$YFQ,UEQ@''
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1559
H@HYFQ$YFQ$YFQ([FP<&G0DYFQ$YFQ$YFQ$YFP4!!G@@YFQ$YFQ$YE1$WFQ$XBPTYFQ$YFQ$YE1$YE1\WB0XYFQ$YFQ$YFQ$YE1\WE0@a') ; colorMapFromArray:#[48 48 50 48 48 60 64 72 80 80 8 20 80 88 100 88 72 60 96 72 60 96 104 120 96 104 130 112 120 140 120 24 20 120 88 70 128 24 20 128 96 70 136 40 40 136 96 70 136 96 80 136 104 80 144 24 20 144 32 40 144 40 40 144 104 80 144 104 90 144 112 90 144 120 110 152 112 90 152 112 100 152 120 100 152 160 190 160 160 180 168 136 110 168 184 220 176 192 220 184 200 230 192 216 240 200 216 230 208 48 50 208 56 60 216 240 240 224 240 240 240 64 70 240 88 100 240 136 140]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@0@G @>@G8@?@C8@_@C8@^@C0@^@C0@^@C0@N@@0@@b') ; yourself); yourself]
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1560
!
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  1561
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1562
printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1563
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1564
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1565
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1566
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1567
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1568
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1569
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1570
     self printIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1571
     ImageEditor openOnClass:self andSelector:#printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1572
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1573
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1574
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1575
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1576
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1577
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1578
	constantNamed:'GenericToolbarIconLibrary class printIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1579
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1580
@@@@@@@@@@@@@@@@@@@@@@@@A XFA XFA X@@@@@@@@@@@XEAPTEAPT@@@@@@@@@@@@FAPTEAPT@@P@@@@@@@@@DA TEAPT@@P@@@@@DA@@@A@XEAPT@@PD@
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1581
APT@A@P@@@PFAPT@@PDC@@@@@@@D@@@DA T@@PDC@0DA@P@DA@@@A@X@@PDC@0DA@P@@A@P@@@P@@@@@@@DA@P@G@@PD@@@DA TEAP@A@P@GA0@DA@@@A@XE
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1582
AP@@@P@GA0\@A@P@@@PFAP\@@P@GA0\G@@PD@@@@A \G@@@GA0\GA0@@@@@@@@XFA @FA XFA @@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255 0 255 0 248 252 248 64 64 64 168 228 240]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8C? O?@?>C?8O?0?>C?8O? ?>C?8O? ?>C?8@@@b') ; yourself); yourself]
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1583
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1584
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1588
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1589
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1590
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1591
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1592
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1593
     self redo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1594
     ImageEditor openOnClass:self andSelector:#redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1595
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1596
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1597
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1598
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1599
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1600
        constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1601
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1602
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1603
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1604
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1605
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1606
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1607
redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1608
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1609
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1611
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1612
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1613
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
     self redo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1617
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1622
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1623
        constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1624
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
@@@@@@@@@@@@@@L3L@@@@@@CL@@CL@@@@C@@@@@C@@LC@!!L2@@@0H0LSL@L2@@L#LC@@@@L @BL3L@@@@C@@H3L0@@@@L@@#L3@@@@H"H"LCL@@@L3L3L0L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
@@@@@@@@@CL0@@@@@@@@@3L0@@@@@@@@@3L@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G A? O?E?>7''?8G? O>@?8G= ?7@@N@@^@@\@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1629
reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1630
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1631
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1633
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1634
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1635
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1636
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1637
     self reload16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1638
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1639
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1640
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1641
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1642
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1644
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1645
        constantNamed:#'GenericToolbarIconLibrary class reload16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1646
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1647
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1648
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 192 0 0 64 0 0 128 0 0 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@>@O>A>\G0P>@#8@?9!!?OC9>GO<HOD@<HG 9>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1649
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1650
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1651
repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1652
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1653
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1654
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1655
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1656
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1657
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1658
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1659
     self repositoryCVSIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1660
     ImageEditor openOnClass:self andSelector:#repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1661
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1662
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1663
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1664
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1665
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1666
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1667
        constantNamed:'GenericToolbarIconLibrary class repositoryCVSIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1668
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1669
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1670
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDDA@DDB@PHA PAAS$0AP A@0$H@0$CBPLI@PT9L@TI
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1671
@PLIBPXIA $AA DENRHEB DD@ (J@ (J@ PAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1672
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1673
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1674
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1675
repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1676
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1677
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1678
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1679
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1680
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1681
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1682
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1683
     self repositoryCheckIn inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1684
     ImageEditor openOnClass:self andSelector:#repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1685
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1686
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1687
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1688
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1689
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1690
    ^Icon
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1691
        constantNamed:'GenericToolbarIconLibrary class repositoryCheckIn'
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1692
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1693
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1694
JR $G!!$K@@@@K"8.K"8.K"8(IA8YB0@@@@@@J2</J2,.JBP^FP,@@@@@K"<,K2<+K" $G!!$L@@@@K"0,K2</J28(IA8YC@@@K"4-K28.K",.JBT^FP0@K",-
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1695
KB8@BQ,.K"LXE1TE@B8/KR8@@AL[I"8#FA\UA@@.K28@@@@@D1LSD1@NDP@@K",.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160 241 241 241 50 155 0 109 255 36 133 255 72 40 124 0 60 186 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O8A?0G?@_<A?0G?G?<G?0??G?<??77?^_=0?''@@@@@b') ; yourself); yourself]
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1696
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1697
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1698
repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1699
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1700
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1701
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1702
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1703
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1704
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1705
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1706
     self repositoryCheckOut inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1707
     ImageEditor openOnClass:self andSelector:#repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1708
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1709
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1710
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1711
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1712
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1713
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1714
        constantNamed:'GenericToolbarIconLibrary class repositoryCheckOut'
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1715
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1716
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1717
JR $G!!$K@@@@@@@@@@@@@@@(IA8YB0@@@@@@@@DB@ DB@BP^FP,@@@@@@@LC@0@@JR $G!!$L@@@@@@LC@0@\I"$(IA8YC@@@@PHC@ @IF"X)JBT^FP0@@@HC
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1718
@ @@BQX]I2LXE1TE@@@B@ H@@APVGR\#FA\UA@@@@PHB@@@@EALSD1@NDP@@@@DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O8A?0G?@_<A?0G?@?<G?4??W?=??77?__=<?''8@_0@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1719
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1720
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1721
repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1722
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1723
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1724
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1725
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1726
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1727
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1728
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1729
     self repositoryLog inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1730
     ImageEditor openOnClass:self andSelector:#repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1731
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1732
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1733
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1734
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1735
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1736
    ^Icon
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1737
        constantNamed:'GenericToolbarIconLibrary class repositoryLog'
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1738
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1739
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@4E@@@@@@@@@@@@@@@@@@DLF @@@@@@@@@@@@@@@A0A@P0E@@@@@@@@@@@@@@@WAP4AB0@C
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1740
@0LC@0\@@@@@E@@ECP@@@1PTFA I@@@@@@@RGA\@@@LXFA XBP@@@@@DC!!TXAA,CEAPTE@$@@@@YA XDA@P[@1 XFA I@@@@B@PDB (JD@LTEAPTBP@@@@ J
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1741
B@ [E!!LCFA XF@$@@@@WC0<OD1LQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[146 146 146 255 218 144 241 241 241 255 255 255 126 186 0 255 157 108 133 255 72 192 192 192 84 124 0 160 160 164 105 155 0 186 126 0 255 255 180 255 206 108 109 255 36 20 62 0 42 62 0 6 6 6 133 133 133 18 18 18 95 95 95 248 248 248 62 62 0 108 108 108 222 222 222 69 69 69 255 255 144 63 93 0 128 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@8@G @_@A=>G''8N_#?>O?8??#?>O8@@@@@@@@@b') ; yourself); yourself]
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1742
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1743
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1744
repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1745
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1746
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1747
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1748
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1749
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1750
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1751
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1752
     self repositorySVNIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1753
     ImageEditor openOnClass:self andSelector:#repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1754
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1755
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1756
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1757
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1758
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1759
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1760
        constantNamed:'GenericToolbarIconLibrary class repositorySVNIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1761
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1762
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1763
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PPD@PPHA@ D@PPAFS$0FP CBP CBPLI@0LD@Q$9L@@I
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1764
BPXIA $FBPXCA D@NRH8B HBB (BB (BB PANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1765
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1766
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1767
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1768
repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1769
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1770
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1771
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1772
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1773
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1774
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1775
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1776
     self repositoryTag inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1777
     ImageEditor openOnClass:self andSelector:#repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1778
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1779
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1780
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1781
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1782
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1783
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1784
        constantNamed:'GenericToolbarIconLibrary class repositoryTag'
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1785
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1786
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH"H"H"@@@JL3L3L3N@@BL3L3L3L8@KJVL3L3L3 K/NT3L3L3N@@BL3L0LC@8@@43L3L3L3 @@ML3L3L3N@@@
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1787
@DQDQDQA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[35 35 35 98 98 98 128 128 66 252 252 128 68 68 68 129 65 65 128 64 2 241 241 241 67 67 67 128 64 64 190 190 66 2 2 2 66 66 66 65 65 3 97 65 3]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A?8O?1??O?=??1??G?<O?0_?@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1788
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1789
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1790
repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1791
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1792
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1793
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1794
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1795
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1796
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1797
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1798
     self repositoryVersions inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1799
     ImageEditor openOnClass:self andSelector:#repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1800
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1801
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1802
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1803
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1804
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1805
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1806
        constantNamed:'GenericToolbarIconLibrary class repositoryVersions'
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1807
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3962
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  1808
@@@@@@@@@@@@@@@@@@@@@@@@@@@#FA(XH0@@@@@@@@@@@@@JABDNA@PJ@@@@@@@@@@@#ABD[HPPDG"L@@@@@@@@@FBDQC1XOB!!8X@@@@@@@@@A(\B08NABD^
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  1809
F @@@@@@@@@ZD T$E \[G!! @@@@@@@@ICQLSD2D[A@XV@@@@@@@I@0HJD1LAG X]ER@@@@@@@0$@@1XXF!! VE@0"EP@@@@@@@@LC@@@@@A<U@BHU@@@@@@@C
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  1810
@0@@@@@@CQT@E1T@@@@@@0L@@@@@@@@MEP@WH@@@@@LC@@@@@@@@@@4UDB@@@@@C@0@@@@@@@@@@@AT_@@@@@0L@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[186 126 0 74 140 199 95 159 191 63 95 159 180 230 255 79 124 169 146 146 146 160 160 164 241 241 241 63 127 191 120 120 120 89 144 198 217 147 0 82 82 82 235 235 235 192 192 192 155 105 0 222 222 222 74 134 193 79 141 199 62 42 0 124 84 0 95 95 95 255 206 108 57 57 57 159 191 191 0 0 0 255 255 255 90 145 199 31 31 31 144 218 255 69 69 69 93 63 0 248 248 248 255 218 144 108 108 108 162 186 210]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O A?@O>@?8C? O>A?8O?07? X_A >FA<XC1 CF@@b') ; yourself); yourself]
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1811
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  1812
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1813
rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1814
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1815
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1816
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1817
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1818
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1819
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1820
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1821
     self rightAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1822
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1823
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1824
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1825
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1827
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1828
        constantNamed:#'GenericToolbarIconLibrary class rightAdjust16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1829
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUAUP@@PUUUUTD@@@AAUUUUPUT@@DEUUUUA@@@@PUUUUTEU@@AAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1830
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1831
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1832
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1833
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1834
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1835
run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1836
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1837
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1838
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1839
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1840
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1842
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1843
     self run16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1844
     ImageEditor openOnClass:self andSelector:#run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1845
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1846
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1847
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1848
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1849
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1851
        constantNamed:#'GenericToolbarIconLibrary class run16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1852
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1853
@@@@@@@@@@@@@@@AT@@@@@@!!@@EP@AT@@CPRMDT!!P0@@ATQDQDP0@@@CQEMTQD@@@@IEL@EDH@@AEDL@@AQAD@L4QP@@EDL0@@MDD@EDT@@@ADQAEDQ@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1854
QDQDQC@@@AP4IDMAP0@@T0@AL@@#@@@@@@D0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 195 195 195 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A CFLO?0_>A?8G''!!<O''0>G'' _>A?8O?01#@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1855
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1856
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1857
search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1858
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1859
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1860
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1861
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1862
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1863
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1864
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1865
     self search16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1866
     ImageEditor openOnClass:self andSelector:#search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1867
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1868
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1869
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1870
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1871
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1872
        constantNamed:#'GenericToolbarIconLibrary class search16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1873
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@ @ @@@@@@@@@@@@B@B@@@@@@@@PDD@@DBA@@B@@ @@@@@@@P@@D@H@@B@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1874
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1876
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1877
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1878
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1879
searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1880
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1881
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1882
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1883
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1884
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1885
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1886
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1887
     self searchNext16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1890
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1894
        constantNamed:#'GenericToolbarIconLibrary class searchNext16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1895
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
@@@DUUT@@@@@@DT@AE@E@@@@T@@@AUT@@@AP@@@EUP@@@DT@@EUU@@@@AE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@C@@@C@@@@@@D@A@D@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1899
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1900
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1901
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1902
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1904
searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1905
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1906
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1907
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1908
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1909
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1910
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1911
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1912
     self searchPrev16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1913
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1914
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1915
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1916
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1917
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1918
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1919
        constantNamed:#'GenericToolbarIconLibrary class searchPrev16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1920
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1921
@@@@UUU@@@@@T@U@@EP@@@AUT@@@AP@@@EUP@@@E@@@@UUT@@EP@@@@@@@@EP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@0@@@0@@@@@AA@@A@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1922
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1923
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1924
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1925
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1926
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1927
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1928
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1929
snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1930
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1931
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1932
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1933
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1934
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1935
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1937
     self snapshot16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1938
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1944
        constantNamed:#'GenericToolbarIconLibrary class snapshot16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1945
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1946
@@@@@@@@@@@@@@@@@@@@@@@@@G\0@@@@@0M0\3A7L0@CL3@3LCL3@@@@@@@@@@@@@@@@&Y@@@@@@L@&X&P@@@@@0BX&Y@@@@@CLI"Y$@@@@@@@&Y&P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1949
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1950
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1951
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1952
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1953
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1954
start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1955
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1956
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1957
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1958
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1959
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1960
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1961
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1962
     self start16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1963
     ImageEditor openOnClass:self andSelector:#start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1964
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1965
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1966
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1967
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1968
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1969
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1970
        constantNamed:#'GenericToolbarIconLibrary class start16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1971
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1972
@@@@@@@@@@@@@@@@Q@@@@DP@@@Q$@@@@Q@@@QSP@@@AD@@QSI@@@@DP@QSH$QDQ@Q@QSH"M&X4ADQSH"H"H!!PDQ#H"H"H"E@QD@RH"H"HTADA@D"HQDQPDP@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1973
PAH$QDQ@Q@@D@RP@@@AD@@A@E@@@@DP@@@PD@@@@@@@@@DP@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@0LG@0<CG0L?>7?;??/?>??;_?,?>1<CC0LG@@L@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1974
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1975
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1976
stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1977
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1978
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1980
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1981
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1983
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1984
     self stop16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1985
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1986
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1987
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1988
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1989
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1991
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1992
        constantNamed:#'GenericToolbarIconLibrary class stop16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  1993
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1994
@@@"H"H"@@@@@$QDQDP @@@$P3L3L1H@@$P3L3L3LR@$P0@3L0@3D"P3@@L0@CLRICL0@@@CL1H$L3L@@CL3D"P3L0@@L3LRICL0@@@CL1H$L0@CL@@3D"P3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1995
@CL3@CLR@!!L3L3L3LR@@HSL3L3LR@@@BDQDQDR@@@@@"H"H"@@@b') ; colorMapFromArray:#[255 255 255 128 0 0 0 0 0 192 0 0 255 192 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@_>C?<_?;?????????????????????_?8??A?8C?@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1996
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1999
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2000
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2001
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2002
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2003
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2004
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2005
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2006
     self top16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2007
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2008
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2009
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2010
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2011
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2012
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2013
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2014
        constantNamed:#'GenericToolbarIconLibrary class top16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2015
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
AUUUUUUUUP@EUUUUUUUU@@@@@EAP@@@@@@@EYCT@@@@@@EYBD5@@@@@EYBH!!MP@@@EYBH"HST@@EYBH"H"D5@EABH"H"H!!MPUUUTH"EUUU@@@E@"HU@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
TBH!!T@@@@@APH"EP@@@@@EPQDU@@@@@@UUUUT@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?1??@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2020
undent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2021
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2022
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2023
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2024
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2025
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2026
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2027
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2028
     self undent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2029
     ImageEditor openOnClass:self andSelector:#undent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2030
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2031
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2032
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2033
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2034
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2035
    ^Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2036
        constantNamed:'GenericToolbarIconLibrary class undent16x16Icon'
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2037
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2038
@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HC@0LC@@@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2039
@@@@@@@@@0HB@0LC@0@@@@@@@@@@@@HB@ HB@0LC@0LC@0LC@0LC@ HC@0LC@@@@@@@@@@@@@0LB@0LC@0@@@@@@@@@@@@LC@0LC@0LC@0LC@0LC@0LC@0@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2040
@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 220 226 243 0 0 128 0 0 0]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?X_?8@FG?H_<@@C?@@@@?0@@@@@@b') ; yourself); yourself]
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2041
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2042
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2044
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2045
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2046
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2047
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2048
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2049
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2050
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
     self undo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2052
     ImageEditor openOnClass:self andSelector:#undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2053
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2055
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2056
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2057
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2058
        constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2059
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2060
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2061
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2062
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2063
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2065
undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2066
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2067
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2068
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2069
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2070
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2071
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2072
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2073
     self undo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2074
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2075
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2076
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2078
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2079
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2080
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2081
        constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2082
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2083
@@@@@@@@@@@@@@@CL3@@@@@@@3@@@3@@L@@0@@H"H0@2@0@BH3D"LC@0@BL0@3D0L@@BL@@@@1L0@@L@@@@CL3@@@0@@@@L3L"H"H@@@@3L3L3L3@@@CL@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2084
@@@@@CL0@@@@@@@CL0@@@@@@@3L0@@@@@@@3L@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A8@_8#?3_?/>^? _<A?0G? _?A @N@A0@^@C @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2085
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2086
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2087
up16x16Icon
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2088
    <resource: #programImage>
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2089
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2090
    ^ self up16x16Icon2
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2091
!
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2092
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2093
up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2094
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2095
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2096
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2097
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2098
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
     self up16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2106
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2107
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2108
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2109
        constantNamed:#'GenericToolbarIconLibrary class up16x16Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2110
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2111
@@@@@@@@@@@@@@@F@@@@@@@@@FE @@@@@@@FATX@@@@@@FASIF@@@@@FASL2Q @@@FASL3L$X@@FASL3L3IF@FESL3L3L2Q Y&Y%L3I&Y&@@@FD3L&@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
XSL2X@@@@@A!!L3I @@@@@FT"H&@@@@@@Y&Y&X@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2113
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2114
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2115
upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2116
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2117
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2118
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2119
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2120
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2121
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2122
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2123
     self upRight16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2124
     ImageEditor openOnClass:self andSelector:#upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2125
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2126
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2127
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2128
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2129
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2130
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2131
	constantNamed:#'GenericToolbarIconLibrary class upRight16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2132
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2133
@@@@@@@@@@@@@@@@T@@@@@@@@@AU@@@@@@@@@EAP@@@EUUUUT T@@@T@@BL3HE@@APL3L3L2AP@E@3L3L3MAT@TCL3L3MAT@APMDQCMAT@@E@4UUUAT@@@TC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2134
QPAQT@@@APME@ET@@@@E@4T@T@@@@@UUUP@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@ @C@@NA?<G?8_?1??''?<_?!!?<G3 _LA< G0@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2135
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2136
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2137
viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2138
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2139
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2140
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2141
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2142
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2143
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2144
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2145
     self viewDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2146
     ImageEditor openOnClass:self andSelector:#viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2147
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2148
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2149
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2150
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2151
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2152
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2153
	constantNamed:#'GenericToolbarIconLibrary class viewDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2154
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@]+X@@@@@]+X@@@@@]+X@@@@@]+X@@@@@@@@b') ; yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2155
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2156
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2157
viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2158
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2159
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2160
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2161
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2162
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2163
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2164
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2165
     self viewNoDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2166
     ImageEditor openOnClass:self andSelector:#viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2167
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2168
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2169
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2170
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2171
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2172
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2173
	constantNamed:#'GenericToolbarIconLibrary class viewNoDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2174
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2175
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2176
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2177
!GenericToolbarIconLibrary class methodsFor:'image specs-20x20'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2178
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2179
browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2180
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2181
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2182
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2183
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2184
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2185
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2186
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2187
     self browseIt20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2188
     ImageEditor openOnClass:self andSelector:#browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2189
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2190
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2191
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2192
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2193
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2194
    ^Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2195
	constantNamed:'GenericToolbarIconLibrary class browseIt20x20Icon'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2196
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2197
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@M&Y&Y D@@@@@@CY&Y&@P@@@@@@ATQDPAD@@@@@@@@@@@DS@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2198
@@@@@QL1D @@@@@@@AD3DR@@@@@@@@@@@QH@@@@@@@@@@@D L3L5@@@@@@@BA7]7]@@@@@@@HDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2199
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2200
@@@@@@@@@@P@_?0@_? @_? @_? @_? @_?<@@?8@A?0@C?? @_? @_? @_? @_? @0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2201
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2202
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2203
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2204
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2205
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2206
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2207
copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2208
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2209
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2210
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2211
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2212
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2213
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2214
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2215
     self copy20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2216
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2217
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2218
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2219
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2220
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2221
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2222
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2223
        constantNamed:#'GenericToolbarIconLibrary class copy20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2224
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2225
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2226
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2227
QDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2228
@@@@G8@@G<@@G>@@G?@@G?@@G?0@G?8@G?<@G?>@G?>@G?>@G?>@@O>@@O>@@O>@@O>@@O>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2229
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2231
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2232
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2233
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2234
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2235
cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2236
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2237
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2238
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2239
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2240
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2241
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2242
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2243
     self cut20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2244
     ImageEditor openOnClass:self andSelector:#cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2245
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2246
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2247
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2248
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2249
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2250
        constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2251
        ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@@@@@@@@@@G0@@]H@@%H@@%H@@$0@@$@@@X@B@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 248]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2252
@@@@@PP@@PP@@PP@@PP@@H @@H @@M @@E@@@G@@@B@@@G0@@]H@@%H@@%H@@$0@@$@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2253
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2254
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2255
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2256
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2257
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2258
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2259
cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2260
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2261
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2263
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2264
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2266
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2267
     self cut20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2268
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2269
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2270
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2272
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2273
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2274
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2275
        constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2276
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2277
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2278
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2279
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2280
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2281
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2282
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2283
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2284
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2285
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2287
debugIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2288
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2289
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2290
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2291
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2292
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2294
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2295
     self debugIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2296
     ImageEditor openOnClass:self andSelector:#debugIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2297
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2299
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2301
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2302
        constantNamed:#'GenericToolbarIconLibrary class debugIt20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2303
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2304
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2305
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2306
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0 208 220 0 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2307
@@@@@@@@@@@@@D@@@L#@@Z_ @9? A7?@C3?@G??@O?> _?>@_;=@C14@C @@G@@@F@@@L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2308
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2309
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2311
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2312
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2313
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2314
doIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2315
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2316
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2318
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2319
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2320
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2321
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2322
     self doIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2323
     ImageEditor openOnClass:self andSelector:#doIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2324
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2325
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2326
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2328
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2329
        constantNamed:#'GenericToolbarIconLibrary class doIt20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2330
        ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@D@@@@@AP@@@@@W@@@@@E=X@@@A_V@@@@@E @@@@@X@@@@@B@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2331
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2332
@@@@@@@@@@P@@@0@@A @@C @@G@@@O@@@_<@@?8@A?0@C? @@O@@@N@@@\@@@X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2333
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2334
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2335
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2336
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2337
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2338
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2339
dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2340
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2341
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2342
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2343
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2344
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2345
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2346
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2347
     self dos20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2348
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2349
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2350
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2351
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2352
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2354
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2355
        constantNamed:#'GenericToolbarIconLibrary class dos20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2356
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2357
@@@@@@@@@@@@@@L3L3L3L3L3L3@CDQDQDQDQDQDP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$H"IBIBH"LP@1IBH"H"IBH#D@LRP"H"H"IBH1@CD$H"IBH$H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2358
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2359
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ @@C&L@D)P@D)H@D)D@C&X@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2360
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2361
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2362
dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2363
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2364
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2365
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2366
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2367
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2368
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2369
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2370
     self dosWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2371
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2372
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2373
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2374
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2375
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2376
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2377
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2378
        constantNamed:#'GenericToolbarIconLibrary class dosWithoutText20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2379
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2380
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H$P"H"H"H#D@LRP"P"H"P"H1@CD$H"H$H"P"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2381
@1IBH"H"H"P#D@LRP"H"H"H"P1@CD$H"H$H"IBLP@1IBIBH"H$H#D@LRIDH"H"P"H1@CD"H"H"H"H"LP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2382
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2383
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2384
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2385
downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2386
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2387
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2388
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2389
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2390
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2391
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2392
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2393
     self downArrow20x20Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2394
     ImageEditor openOnClass:self andSelector:#downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2395
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2396
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2397
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2398
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2399
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2400
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2401
	constantNamed:#'GenericToolbarIconLibrary class downArrow20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2402
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2403
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@ HB@ HB@ HB@ HB@@HB@ HB@ @B@ HB@ HB@ HB@ H@@ DA
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2404
@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ DA@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2405
@ @@@@@@@@HA@PDA@ @@@@@@@@HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@ @B@PDA@PDA@PDA@PH@@ HB@ HB@ @B@PDA@PDA@PDB@@HB@ HB@ HB@ @B@PDA
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2406
@PDA@ @B@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@ @B@PDB@@HB@ HB@ HB@ HB@ HB@ @B@ @B@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2407
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?0E@?0@@?0G@?0@@?0B@?0@@?0@_?? O??MG?>@C?<@A?8C@?0H@_ @@O@@@F@C@@@A@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2408
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2409
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2410
edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2411
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2412
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2413
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2414
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2415
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2416
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2417
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2418
     self edit20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2419
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2420
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2421
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2422
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2423
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2424
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2425
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2426
        constantNamed:#'GenericToolbarIconLibrary class edit20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2427
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2428
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ HB@ HB@@\F@@HB@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2429
@ HB@@\FA $@@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ @@@@@@@@\FA $@@ HB@ HB@ H@@0LN@00@A0XI@@HB@ HB@ HB@@LC@08N@@\FA $@@@HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2430
@ HB@ @C@0@@@0L@A0XI@A@@@ HB@ H@@0L@C 8@@@(FA $@DP@@@ HB@@LC@@8P@@L@B DF@ALCC @B@ @C@0@@@@TC@0@A@P4@@0<C@@H@@@LC@0LC@@LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2431
@@@M@@LE@0L@@ @@@@@@C 8C@0L@@@@CC0LC@@HB@ HB@ H@@@@NC @@@1DC@0@@@ HB@ HB@ HB@ @@C LE@0L@@ HB@ HB@ HB@ HB@ H@D@LC@@HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2432
@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 166 126 78 0 255 51 255 255 255 153 153 153 102 102 102 255 204 0 255 255 102 248 3 8 236 152 0 253 202 138 102 102 102 204 204 204 110 74 32 181 181 181 125 125 125 117 117 117 162 162 162 254 12 17 214 214 214]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@F@@@O@@@O @@_ @@_@@_?@@?>@A?>@C??@G?? O?? _?? _?? O??@A?>@@O<@@C8@@A0@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2433
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2434
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2435
empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2436
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2437
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2438
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2439
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2440
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2441
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2442
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2443
     self empty1x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2444
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2445
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2446
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2448
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2449
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2450
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2451
        constantNamed:#'GenericToolbarIconLibrary class empty1x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2452
        ifAbsentPut:[(Depth1Image new) width: 1; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@F #L#!!LG 8H@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 0 0 0]; mask:((Depth1Image new) width: 1; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2453
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2455
erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2456
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2457
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2458
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2459
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2460
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2462
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2463
     self erase20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2464
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2465
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2466
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2467
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2468
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2469
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2470
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2471
        constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2472
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2473
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2474
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2475
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2476
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2477
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2478
erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2479
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2480
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2481
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2482
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2483
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2484
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2485
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2486
     self erase20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2487
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2488
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2489
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2490
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2491
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2492
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2493
        constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2494
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2495
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2496
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2497
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2498
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2499
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2500
executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2501
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2502
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2503
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2504
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2505
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2506
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2507
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2508
     self executeMethod20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2509
     ImageEditor openOnClass:self andSelector:#executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2510
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2511
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2512
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2513
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2514
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2515
    ^Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2516
        constantNamed:'GenericToolbarIconLibrary class executeMethod20x20Icon'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2517
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2518
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2519
@@@@@@@@@@@@@@@@@@@@@@@@@@@@A @@@@@@@@@@@@@DA@PDA@PD@@X@A@PDA@PC@@@@@@PA@PDA@P@FA @A@PDA@PD@@@@@A@DA@PD@A XD@@@@@@@A@P@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2520
@@@D@PDA@@XFA@PFA \@@PDA@@@@@@PA@P@FA PDA XG@@DA@PD@@@@@A@D@@@@@@@XFA0@A@PDA@P@@@@@D@PDA@PD@A \@@PDA@PDA@@@@@@LB@ HB@ @G
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2521
@@HB@ HB@ H@@@@@@@@@@@@@A0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 0 0 127 127 127 170 170 170 255 255 255 0 0 0 248 252 128 208 220 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2523
@@@@@@@@@@P@@@0@@A @_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2524
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2525
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2526
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2527
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2528
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2529
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2530
fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2531
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2532
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2533
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2534
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2535
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2536
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2537
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2538
     self fileIn20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2539
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2540
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2542
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2543
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2544
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2545
        constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2546
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2547
@@@@@@@@@@@@@@@@@@@@Y&Y&Y&@@@@@@@FL3M&Y @@Y DFA"H"Y&X@DFXA@@Y"Y&Y&@A@@@P@FX&Y&Y @QDQD@M&I%UUX@DP@AA#M"H"H&@ADFD3L3L&Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2548
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2549
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0@G?0?7?0???0?7?0?7?0?7?0???0???0_??0@??0@G?0@G?0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2550
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2552
fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2553
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2554
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2555
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2556
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2557
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2558
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2559
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2560
     self fileIn20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2561
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2562
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2563
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2564
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2566
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2567
        constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2568
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2569
@@@@@@@@@@@@@G]7]0@@Y&Y&Y&A;.;\@@FL3M&Y ^:*7,FA"H"Y&XG.;-0@@Y"Y&Y&A;**.H@FX&Y&Y ^;.;&0M&I%UUXG.**J$CM"H"H&A;.9,3L3L&Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2570
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2571
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0?G?0?''?0???0???0???0???0???0???0???0???0???0???0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2572
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2573
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2574
fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2575
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2576
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2577
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2578
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2579
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2580
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2581
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2582
     self fileIn20x20Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2583
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2584
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2585
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2586
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2587
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2588
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2589
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2590
        constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon3'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2591
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2592
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@A&Y&Y&@8"HL@@@Y7]6Y NFZC @@FH"I&XC"H 0@@A&I&Y&@8Y&!!&@@Y"Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2593
NH"HR@A6X&DQXC!!&Y&P@]6H"H&@8"D]7]7]2Y&Y NFY'']7]7]6Y&XC!!HQ7]7]7I%UV@4!!DQD@G]"H"I L@@@@@A6Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2594
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 0 63 63 36 64 64 64 168 228 240 194 194 0 208 212 208 255 0 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C?0?C?0?#?0?3?0?;?0?;?0?;?0?;?0???0???0???0?;?0?;?0@C?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2595
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2596
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2597
fileNew20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2598
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2599
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2600
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2601
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2602
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2603
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2604
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2605
     self fileNew20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2606
     ImageEditor openOnClass:self andSelector:#fileNew20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2607
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2608
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2609
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2610
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2611
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2612
        constantNamed:#'GenericToolbarIconLibrary class fileNew20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2613
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2614
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@@@@@@@@1DQL @@@@@@@@LQDSD @@@@@@@CDQD1D @@@@@@@1DQL"H @@@@@@LQDQQDH@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2615
@@@CDQDQTR@@@@@@@1DQEQT @@@@@@LQDUEUH@@@@@@CDQTUUR@@@@@@@1EQUUT @@@@@@LUEUUUH@@@@@@CTUUUUR@@@@@@@2H"H"H @@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2616
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 168 172 168 168 228 240]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2617
@@@@@@@@@@@@A>@@A?@@A? @A?0@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2618
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2619
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2620
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2621
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2622
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2623
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2624
fileOpen20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2625
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2626
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2627
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2628
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2629
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2630
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2631
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2632
     self fileOpen20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2633
     ImageEditor openOnClass:self andSelector:#fileOpen20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2634
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2635
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2636
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2637
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2638
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2639
        constantNamed:#'GenericToolbarIconLibrary class fileOpen20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2640
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2641
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2642
@BEUTQDQD @@@@@!!UUUUUUH@@@@@HUT"H"H"H"H@@BERQDQDQDP @@@!!IDQDQDQB@@@@H$QDQDQDH@@@@BH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2643
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 0 0 128 128 128 0 248 252 184]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2644
@@@@@@@@@@@@@@@@@@8@@AE@@@C@G G@O? @O?0@O?0@O??@O?>@O?<@O?8@O?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2645
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2646
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2647
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2648
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2649
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
fileSave20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2653
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2655
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2656
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2657
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2658
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2659
     self fileSave20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2660
     ImageEditor openOnClass:self andSelector:#fileSave20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2661
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2662
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2663
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2664
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2665
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2666
        constantNamed:#'GenericToolbarIconLibrary class fileSave20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2667
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2668
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3H"H"H"@@@@@C]7H"QDIB@@@@@7QBH$QBQB@@@@M4P"IDP$P @@@C]DH"H"QDH@@@@7QDQDQDQB@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2669
@@M4Y&Y&Y$P @@@C]!!DQDQU$H@@@@7XQDQEQYB@@@@M6DQDUEVP @@@C]!!DQTUU$H@@@@7XQEQUUX"@@@@M6DUEUUVD @@@BH"H"H"H"H@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2670
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 168 172 168 168 228 240 96 96 96 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2671
@@@@@@@@@@@@G?8@G?<@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2672
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2673
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2674
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2675
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2676
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2677
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2678
fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2679
    "This resource specification was automatically generated
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2680
     by the ImageEditor of ST/X."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2681
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2682
    "Do not manually edit this!! If it is corrupted,
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2683
     the ImageEditor may not be able to read the specification."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2684
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2685
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2686
     self fitImageSizeToView20x20Icon inspect
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2687
     ImageEditor openOnClass:self andSelector:#fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2688
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2689
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2690
    <resource: #image>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2691
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2692
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2693
	constantNamed:#'GenericToolbarIconLibrary class fitImageSizeToView20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2694
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2695
@@DQDQDQDQDP@@@PDQDQDQDQ@P@A@ADQDQDQDP@PD@@PDQDQDPD@@QDQ@ADQDQ@@DQDQD@@@@@@@@@DQDQDPQDQDQ@DQDQDQDDQUUTPADQDQDQAEUUUT@QDQ
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2696
DQDPQEUUQ@DQDQDQDDQFQDPADQDQDQADQ$QD@QDQDQDPL3X3Q@DQDQDQDCL3L3LADQDQD@@@@@@@@@DQDQD@DQDQDP@QDQ@@DADQDQDA@@DA@ADQDQDQDP@P
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2697
@@@QDQDQDQDA@@@ADQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2698
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2699
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 0 137 0 174 218 230 0 206 0 133 60 36]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2700
8@A00@@0(@APE@J@C@L@G?>@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@G?>@C@L@E@J@(@AP0@@08@A0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2701
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2702
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2703
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2704
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2705
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2706
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2707
history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2708
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2709
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2710
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2711
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2712
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2714
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2715
     self history20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2716
     ImageEditor openOnClass:self andSelector:#history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2717
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2719
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2721
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2722
        constantNamed:#'GenericToolbarIconLibrary class history20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2723
        ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2724
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J** @@@@IVU @@@@J**"@@@@IVU"@@@@J**"H@@@IVU"H@@@J**"H @@IVU"H @@J**"H @@@@@BH @@@***H @
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2725
@@@@@H @@@B**( @@@@@@@ @@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G?0@G?0@G?<@G?<@G??@G??@G??0G??0G??0G??0G??0A??0A??0@_?0@_?0@G?0@G?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2726
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2727
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2728
inspectIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2729
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2730
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2731
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2732
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2733
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2734
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2735
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2736
     self inspectIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2737
     ImageEditor openOnClass:self andSelector:#inspectIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2738
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2739
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2740
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2742
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2743
        constantNamed:#'GenericToolbarIconLibrary class inspectIt20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2744
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2745
"H"H"H"H"H"H"H"H"H @@H"H"H"H"H @M&D@"H"H"H"@M&]&XP"H"H"H FXWY&XH"H"H"@E!!]FY&DH"H"H AEWQFY&BH"H"H@[]$Y&Y "H"H"@.7Y&Y&LH"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2746
"HB;Q1DWY "H"H K-D.:]&LH"H"@.4R;)1L@&X"H @@K. @@"@JX"H"HB:BH"H"@JX"H"@(H"H"H"@JX"HB "H"H"H"@JX"@BH"H"H"H"@BH@H"H"H"H"H"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2747
"@"H"H"H"H"H"H"H"H"H"H"H"H b') ; colorMapFromArray:#[0 0 0 128 132 128 168 172 168 208 212 208 248 252 248 248 252 128 152 204 216 64 64 64 255 255 255 128 64 64 208 220 0 248 252 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2748
@@@@@O@@@?0@A?8@A?8@C?<@C?<@C?<@C?<@G?8@O?8@_?<@_?N@C0G@C C G@A0F@@0L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2749
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2750
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2751
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2752
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2753
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2754
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2755
inspectLocals20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2756
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2757
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2758
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2759
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2760
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2761
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2762
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2763
     self inspectLocals20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2764
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2765
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2766
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2767
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2768
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2769
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  2770
        constantNamed:#'GenericToolbarIconLibrary class inspectLocals20x20Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2771
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2772
@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H@@BEDQDQDQDDR@@@$P"H$QDQDP @@H"%&T"DQDWH@@B%&Y&YRDQ\R@@@& VY&X!!E1\ @B%!!DX"FT''E7H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2773
@&Y!!Y&Y&HW]2@@I&"F"HY"]7\ @BU(!!&Y&$'']7H@@BY&Y&Y"H"H"@@@%Y&Y&$ @@@@@@@"U&$"L0@@@@@@@BH"@BT0@@@@@@@@@@@BT0@@@@@@@@@@@BT0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2774
@@@@@@@@@BT0@@@@@@@@@@@BH@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 128 64 64 0 0 248 168 172 168 152 204 216 168 228 240 112 156 160 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2775
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2776
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2777
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2778
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2779
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2780
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2781
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2782
leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2783
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2784
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2785
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2786
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2787
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2788
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2789
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2790
     self leftArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2791
     ImageEditor openOnClass:self andSelector:#leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2792
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2793
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2794
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2795
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2796
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2797
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2798
        constantNamed:#'GenericToolbarIconLibrary class leftArrow20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2799
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2800
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@@HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2801
@@HB@ HB@ HB@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ H@@ DA@P@@@@@@@@@@@ HB@ HB@@HA@PDA@ HB@ HB@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2802
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB@ HB@ @B@PDA@PHB@ HB@ H@@ HB@ HB@ @B@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2803
@@@@@@@@@@@B@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ HB@ @B@P@B@ HB@ HB@ HB@ HB@ HB@ @B@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2804
@ HB@ HB@ HB@ @B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M@B@@@F@J@N@@@^@J@>@@A??@C??@G??OO??@O??@G??@C??@A??E@>@H@^@@@N@@@F@N@B@A@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2805
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2806
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2807
newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2808
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2809
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2810
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2811
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2812
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2813
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2814
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2815
     self newDirectory20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2816
     ImageEditor openOnClass:self andSelector:#newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2817
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2818
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2819
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2820
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2821
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2822
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2823
        constantNamed:#'GenericToolbarIconLibrary class newDirectory20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2824
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2825
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@A@ HB@ HA@@@@@@@@@@@@@@@@@PHB@ HB@ HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2826
@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@D@@PHB@ HB@ HB@ HB@@@@@ HB@P@A@ HB@ HB@ HB@ @B@@H@@ HA@@DB@ HB@ HB@ H@@ H@@ H@@ D@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2827
@PHB@ HB@ HB@@HB@ @B@ H@@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2828
@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DA@PDA@PDA@PDA@PDA@PDA@PD@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2829
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 0 0 0 0 0 255 255 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@DQ@O:R@O9T@_<8@??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? @@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2830
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2831
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2832
paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2833
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2834
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2835
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2836
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2837
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2838
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2839
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2840
     self paste20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2841
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2842
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2843
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2844
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2845
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2846
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2847
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2848
        constantNamed:#'GenericToolbarIconLibrary class paste20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2849
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2850
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2851
@@MTQDLX SD @@@CUDQCDQD2H @@@5QDP1"HFHH@@@MTQDLQDQXR@@@CUDQCFH"HX @@@5QDP1DVE&H@@@MTQDLX"H!!"@@@@H"H#E!!Y&X @@@@@@@6E&Y&H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2852
@@@@@@L"H"H"@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 96 96 96 208 212 208 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2853
@@@@@N@@A?0@C?8@G?<@G?<@G?<@G?<@G?<@G?>@G??@G??@G??@G??@G??@G??@C??@@G?@@G?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2854
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2855
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2856
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2857
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2858
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2859
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2860
printIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2861
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2862
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2863
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2864
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2865
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2866
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2867
    "
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2868
     self printIt20x20Icon inspect
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2869
     ImageEditor openOnClass:self andSelector:#printIt20x20Icon
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2870
     Icon flushCachedIcons
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2871
    "
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2872
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2873
    <resource: #image>
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2874
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2875
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2876
	constantNamed:'GenericToolbarIconLibrary class printIt20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2877
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2878
@@@@@@@@@@@@@@@@@@L3L3L3L0@@@@@CDQDQDQL@@@@@@1DQLQDS@@@@@@LQD3DQD @@@@@CDSLQDQH@@@@@@1ND&Y&R@@@@@@L8NY&Y$ @@@@@B"C&Y&YH@
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2879
@@@@JHD3L9&R@@@@@( Q"GLQD @@@B"AFH\1DQH@@@H"H(!!3DQDR@@@@@@JGLQDQD @@@@@B\"H"H"H@@@@@I2@@@@@@@@@@@BH@@@@@@@@@@@H @@@@@@@@
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2880
@@@B@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 208 220 0 248 252 128 32 220 32]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  2881
@@@@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2882
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2883
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2884
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2885
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2886
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2887
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2888
redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2889
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2890
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2892
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2893
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2894
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2895
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2896
     self redo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2897
     ImageEditor openOnClass:self andSelector:#redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2898
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2899
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2900
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2901
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2902
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2903
        constantNamed:#'GenericToolbarIconLibrary class redo20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2904
        ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2905
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2906
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2907
rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2908
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2909
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2910
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2911
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2912
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2913
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2914
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2915
     self rightArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2916
     ImageEditor openOnClass:self andSelector:#rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2917
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2918
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2919
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2920
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2921
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2922
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2923
        constantNamed:#'GenericToolbarIconLibrary class rightArrow20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2924
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2925
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@ HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ HB@@H@@ HB@ HB@ HB@ HB@ HB@ H@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2926
@PH@@ HB@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ H@@@@@@@@@@@DA@PH@@ HB@ HB@ @B@ HB@ HB@PDA@PH@@ HB@ HB@@HA@PDA@PDA@PDA@PH@@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2927
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@@HA@PDA@PDA@PDA@PH@@ HB@ H@@ HB@ HB@ DA@PDB@@HB@ HB@ @@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2928
@PDA@ @B@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ HB@ HB@ HB@@DB@@HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2929
@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@D@@@F@H@G@@@G @@G0@O?8AO?<@O?>@O??@O??DO?>DO?<@O?8@@G0@@G @@G@@@F@@@D@J@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2930
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2931
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2932
search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2933
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2934
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2935
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2936
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2937
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2939
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2940
     self search20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2941
     ImageEditor openOnClass:self andSelector:#search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2942
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2943
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2944
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2946
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2947
        constantNamed:#'GenericToolbarIconLibrary class search20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2948
        ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@B@@@@@@@@@@@@@@@@@H@H@@@@@@@@@@DAA@@@@PHD@@@B@@ @@@@@@@@@A@@@P@@H@@B@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2949
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@A10@A10@A10@C;8@C;8@G?<@O?>@O?>@O?>@O;>@O >@O >@O >@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2950
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2951
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2952
shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2953
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2954
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2955
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2956
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2957
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2958
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2959
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2960
     self shell20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2961
     ImageEditor openOnClass:self andSelector:#shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2962
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2964
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2965
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2966
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2967
        constantNamed:#'GenericToolbarIconLibrary class shell20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2968
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2969
@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$P"H"H"H"LP@1IDH"H"H"H#D@LRIDH"H"H"H1@CD"QBH"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2970
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2971
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ B F82 H%J D%: B%B L$2 ') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2972
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2973
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2974
shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2975
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2976
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2977
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2978
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2979
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2980
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2981
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2982
     self shell20x20WithoutTextIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2983
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2984
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2985
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2987
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2988
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2989
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2990
        constantNamed:#'GenericToolbarIconLibrary class shell20x20WithoutTextIcon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  2991
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2992
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2993
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2994
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2995
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2997
shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2998
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2999
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3000
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3001
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3002
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3003
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3004
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3005
     self shellWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3006
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3007
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3008
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3009
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3010
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3012
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3013
        constantNamed:#'GenericToolbarIconLibrary class shellWithoutText20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3014
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3015
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3016
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3017
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3018
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3019
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3020
tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3021
    "This resource specification was automatically generated
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3022
     by the ImageEditor of ST/X."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3023
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3024
    "Do not manually edit this!! If it is corrupted,
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3025
     the ImageEditor may not be able to read the specification."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3026
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3027
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3028
     self tableViewWidget20x20 inspect
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3029
     ImageEditor openOnClass:self andSelector:#tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3030
     Icon flushCachedIcons
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3031
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3032
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3033
    <resource: #image>
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3034
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3035
    ^Icon
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3036
        constantNamed:'XPToolbarIconLibrary class tableViewWidget20x20'
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3037
        ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C?O<?0@N,:3+@@?3?O<@@@@@@@@O<?3?@@:3+N,@C?O<?0@@@@@@@@?3?O<@C+N,:0@O<?3?@@@@@@@@@@@@@@
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3038
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O@@@OA#FO@@@OG??/G??/7??/G??/G??/G??/7??/G??/G??/G??/7??/G??/G??/@@@O@@@O@@@O') ; yourself); yourself]
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3039
!
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3040
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3041
undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3042
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3043
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3044
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3045
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3046
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3047
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3048
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3049
     self undo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3050
     ImageEditor openOnClass:self andSelector:#undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3051
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3052
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3053
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3055
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3056
        constantNamed:#'GenericToolbarIconLibrary class undo20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3057
        ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3058
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3059
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3060
upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3061
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3062
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3063
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3064
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3065
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3066
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3067
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3068
     self upArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3069
     ImageEditor openOnClass:self andSelector:#upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3070
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3071
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3072
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3073
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3074
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3075
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3076
        constantNamed:#'GenericToolbarIconLibrary class upArrow20x20Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3077
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3078
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ H@@ H@@ HB@ HB@ HB@ HB@ HB@@HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3079
@PH@@ HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ H@@ DA@PDA@PH@@ HB@ HB@ HB@@HA@PDA@PDA@PH@@ HB@ HB@ @B@PDA@PDA@PDA@PH@@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3080
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@@@@@@@@@ DA@PDB@@@@@@@@@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ DA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3081
@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ HB@ HB@@HB@ HB@ HB@ HB@ @@@@@@@@@@@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3082
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@J@@@@@F@@@O@@@_ O@?0@A?8@C?<@G?>@O??E_??(@?0@@?0@@?0N@?0A@?0@@?0@@?0K@@@A@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3083
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3084
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3085
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3086
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3087
backward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3088
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3089
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3090
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3091
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3092
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3093
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3094
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3095
     self backward3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3096
     ImageEditor openOnClass:self andSelector:#backward3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3097
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3098
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3100
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3101
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3102
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  3103
        constantNamed:#'GenericToolbarIconLibrary class backward22x22_3DIcon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3104
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3105
UUUUUUUPUUUUUUUPUUT@EUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPWUT*%UUPWWR*)UUPWUR*)UUP_5R*)UUP_UJ**UUP_UJ**UUPUUJ**UUPUPJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3106
UR***)UPUTJ**UUPUUP*%UUPUUUAUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O @@O0@@O0@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@@?<@C??@C??@A?>@@_8@@G @@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3107
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3108
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3109
close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3110
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3111
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3112
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3113
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3114
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3115
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3116
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3117
     self close22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3118
     ImageEditor openOnClass:self andSelector:#close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3119
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3120
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3122
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3123
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3124
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3125
        constantNamed:#'GenericToolbarIconLibrary class close22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3126
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3127
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3128
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3129
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3130
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3131
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3132
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3133
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3134
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3135
copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3136
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3137
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3138
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3139
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3140
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3141
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3142
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3143
     self copy22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3144
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3145
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3146
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3147
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3148
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3149
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3150
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3151
        constantNamed:#'GenericToolbarIconLibrary class copy22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3152
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3153
@@@@@@@@@@AUUUW@@@A???>@@@A???>O@@A???>@@@A???>@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8?>@G???8?>IG???8?>@G???8**M
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3154
G???8@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@_?<@_?<@_?<@_?<@_?<@_?<???<???<???<???<???<???<???<???<???<???<??8@??8@??8@??8@??8@??8@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3155
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3157
copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3158
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3159
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3160
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3161
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3162
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3163
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3164
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3165
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3166
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3167
     self copyMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3168
     ImageEditor openOnClass:self andSelector:#copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3169
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3170
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3171
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3172
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3173
        constantNamed:#'GenericToolbarIconLibrary class copyMenuItem22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3174
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3175
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O@@@@@@@@@@AUUUW@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8**@G???8@@IN***(@@@@@@@@@@M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3176
@@@@@@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<???<???<???<???<???<???<???<??8@??8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3177
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3178
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3179
currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3180
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3181
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3182
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3183
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3184
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3185
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3186
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3187
     self currentDirectoryIcon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3188
     ImageEditor openOnClass:self andSelector:#currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3189
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3190
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3191
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3192
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3193
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3194
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3195
	constantNamed:#'GenericToolbarIconLibrary class currentDirectoryIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3196
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3197
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQIDP!!DP@@@@@@DQIDQDHQD@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3198
DQIDQDQBDQ@@@@DQIDQDQDP!!DP@@DQIDQDQDQDHQD@D"IDQDQDQDQ@@A@RH$QDQDQDQD@@D@@@QDQDQDQDP@@@@@ADQD@@QDQ@@@@@@DQDP@ADQD@@@@@@QD
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3199
Q@@DQDP@@@@@ADQDQDQDQ@@@@@@DQDQDQDQD@@@@@@QDQDQDQDP@@@@@ADQDQDQDQ@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3200
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3201
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3202
cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3203
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3204
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3205
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3206
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3207
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3208
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3209
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3210
     self cut22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3211
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3212
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3213
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3214
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3215
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3217
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3218
        constantNamed:#'GenericToolbarIconLibrary class cut22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3219
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3220
@@@@@@@@@@@@@@@@DQDQDP0AL@@L@@@SL3L3CBL @B0@@AL3L3LL0B@@3@@@D3L3L0KB@@KB@@@SL3L3LL0@CL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3221
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@SL3L3L0CL0@@@@AL3L3L3@,CB@@@@D3L3L3@L0L0@@@@2H"H H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3222
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_=\P_=<0_=,0_=50_>5 _>; _?[@_?[@_?.@_?.@_?N@_?[@_>[@_;;8_75<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3223
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3224
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3225
cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3226
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3227
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3228
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3229
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3230
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3231
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3232
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3233
     self cutMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3234
     ImageEditor openOnClass:self andSelector:#cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3235
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3236
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3237
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3238
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3239
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3240
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3241
        constantNamed:#'GenericToolbarIconLibrary class cutMenuItem22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3242
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3243
@@@@@@@@@@@@@@@@@@@ADP0@@@@L@@@CL3L3CB@@@B0@@@L3L3LL0@@@3@@@@@@@@@KB@@KB@@@QDQDQDL0ACL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3244
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@2H"H"H"CL0@@@@@@@@@@@@,CB@@@@@@@@@@@L0L0@@@@@@@@@H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3245
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A@P@A 0@A 0_=50_>5 _>; _?[@_?[@_?.@_?.@_?.@_?[@@@[@@C;8@G5<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3247
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3248
debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3249
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3250
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3251
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3252
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3253
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3254
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3255
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3256
     self debug22x22Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3257
     ImageEditor openOnClass:self andSelector:#debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3258
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3259
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3260
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3261
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3262
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3263
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3264
	constantNamed:#'GenericToolbarIconLibrary class debug22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3265
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3266
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3267
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ HB@ @@@@@@@@@@@@@@@@@@@ HBAPTEAPTB@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3268
@@@B@ @B@ HEAPTEAPTEAPH@@@@@@@HBAPTE@@HEAPTEAPTEAPTE@ @@@@@B@ TEAP@BAPTEAPTEAPTEAPH@@@@@@@HEAPT@@@@@@@@@@@@@@@@@@@@@@@HB
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3269
APTE@@HBAPTEAPTEAPTE@ @@@@@@@ HB@ @B@ TEAPTEAPTE@ H@@@@@@@@@@@@@@@HBAPTEAPTE@ @@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3270
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3271
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3272
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3273
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3274
debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3275
    "This resource specification was automatically generated
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3276
     by the ImageEditor of ST/X."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3277
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3278
    "Do not manually edit this!! If it is corrupted,
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3279
     the ImageEditor may not be able to read the specification."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3280
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3281
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3282
     self debug22x22IconForBlackBackgound inspect
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3283
     ImageEditor openOnClass:self andSelector:#debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3284
     Icon flushCachedIcons
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3285
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3286
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3287
    <resource: #image>
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3288
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3289
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3290
	constantNamed:'GenericToolbarIconLibrary class debug22x22IconForBlackBackgound'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3291
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3292
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@@@@@FA X@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3293
@@@@@@@F@@@@A X@@@XFA @@A @@@@@@@@@@@@XF@@@FA XFA XF@@@@@@@@@@@@@@@@A @FA HB@ HB@ X@@@@@@@@@@@XFA XF@ HBAPTEAPTBA @@A @@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3294
@@XB@ XB@ HEAPTEA XEAPHF@@@FA HBAPTEA HEA XEAPXFAPTE@ @@@@@B@ XEAPXBAPXFAPTEAPTEAPH@@@@@A HEAPTFA XFA XFA XFA XF@@@FA HB
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3295
A TEA HBAPTEAPTEA XE@ @F@@@F@ HB@ XB@ TEA XEAPXF@ X@@@@@@@@FA XFA HBAPXFAPTE@ X@@@@@@@@@@@@@A XFA XB@ HB@ X@@@@@@@@@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3296
A X@@@XFA XFA X@@@@@@@@@@@@@A @@@@XF@@@@A X@A X@@@@@@@@@@@@@A X@@@@@@@@FA @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3297
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@') ; yourself); yourself]
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3298
!
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3299
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3300
delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3301
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3302
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3303
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3304
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3305
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3306
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3307
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3308
     self delete22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3309
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3310
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3311
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3312
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3313
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3316
        constantNamed:#'GenericToolbarIconLibrary class delete22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3317
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3318
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3319
L3L3L0@ @@@ @AL3L3L3@@@@@@@@D3L3L3L@D@@@H@@SL3L3L0@QL3H @AL3L3L3@A@3LB@@D3L3L3L@DC@0H@@2H"H"H @PLC@ @@@@@@@@@A@0LB@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3320
@@@@DC@0H@@@@@@@@@@PLC@ @@@@@@@@@A@0LB@@@@@@@@@@DS@2H@@@@@@@@@HAL3HB@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_?<@_?<P_?<P_?<X_?<X_?<H_?0H_?O<_?XL_?_<_?_<_?_<_?_<_?_<_?_<@@_<@@_<@@_<@@_<@@_<@@G0') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3323
displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3324
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3325
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3326
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3327
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3328
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3329
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3330
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3331
     self displayScreen22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3332
     ImageEditor openOnClass:self andSelector:#displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3333
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3334
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3335
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3336
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3337
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3338
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3339
	constantNamed:#'GenericToolbarIconLibrary class displayScreen22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3340
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3341
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&Y&Y&Y&Y&&P@@A&Y&Y&Y&Y&ZY@@@FXXUUV***)9$0@@Y!!H"H+.AF''&S@@A&,"H"H+DZ^YL@@F
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3342
Z2H"H",Q)9$0@@Y(H"J;-QF''&S@@A&E[.HUQDZ^YL@@FXUUUUUDQ*)$0@@Y!!UUUUTQF*&S@@A&(QF$*$QD^YL@@I&Y&Y&Y&Y&Y$0@@&Y&Y&Y&Y&Y&S@@@@L3
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3343
M)&YL3L3L@@@@@@F&Y$3@@@@@@@@ZY&Y&Y&S@@@@@@A)&Y&Y&YL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 80 96 80 112 112 64 64 64 48 64 80 64 96 96 128 128 128 48 80 80 80 96 96 112 112 112 64 80 80 80 96 112]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G??0G??0G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8A??8@G<@@??@@??@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3344
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3345
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3346
down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3347
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3348
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3349
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3350
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3351
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3352
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3353
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3354
     self down22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3355
     ImageEditor openOnClass:self andSelector:#down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3356
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3357
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3358
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3359
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3360
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3361
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3362
        constantNamed:#'GenericToolbarIconLibrary class down22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3363
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3364
UUT@AUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3365
UT@*$AUPUV***%UPUU***UUPUUZ*)UUPUUV*%UUPUUU*UUUPUUUYUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@A?>@A?>@@?<@@_8@@O0@@G @@C@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3366
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3367
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3368
downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3369
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3370
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3371
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3372
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3373
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3374
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3375
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3376
     self downRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3377
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3378
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3379
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3380
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3381
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3382
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3383
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3384
        constantNamed:#'GenericToolbarIconLibrary class downRight22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3385
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3386
UUUUUUUPP@EUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUT%UPR*UUT)UPR*UUT*UPR*P@@*%PR*****)P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3387
R******PR*****)PR*****%PQUUUU*UPUUUUT)UPUUUUT%UPUUUUTUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ L@_ N@_ O@_?? _??0_??8_??8_??0_?? @@O@@@N@@@L@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3388
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3389
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3390
editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3391
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3392
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3393
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3394
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3395
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3396
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3397
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3398
     self editor22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3399
     ImageEditor openOnClass:self andSelector:#editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3400
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3401
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3402
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3403
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3404
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3405
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3406
	constantNamed:#'GenericToolbarIconLibrary class editor22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3407
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3408
*******************************("H"H"H"H"J(@**"EUUU%UUUU@@^**HUUUVUUUU@@]:*(!!UUUYUUUT@A7**"FY&Y&Y&X@]7^**HUUUVUU@@]7\Z*(
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3409
!!UUUYU@@]7\R**"EUUU%T@A7]1J**HY&Y&XC]7\Q&**(!!UUU(3M7\Y&***"EUUU#L3L2QJ***HY&Z#L3L6)D***(!!&Y*L3L6Z$R***"EUUP3M&ZEQJ***HUU
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3410
RRY(UUUD***("*)J*****$R***"J)J******QJ***HUUUZUUUUUD***TQDQDQDQDQDR***************(b') ; colorMapFromArray:#[240 160 80 192 80 0 64 0 0 240 208 160 0 0 0 240 240 240 192 192 192 240 128 0 208 208 208 48 48 48 160 160 160]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G??LG??<G??<G??<G??<G??<G??<G??<G??8G??0G??0G??0G??0G??0G??0G??0G??0G??0O??0@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3411
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3412
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3413
font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3414
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3415
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3416
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3417
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3418
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3419
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3420
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3421
     self font22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3422
     ImageEditor openOnClass:self andSelector:#font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3423
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3424
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3425
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3426
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3427
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3428
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3429
	constantNamed:#'GenericToolbarIconLibrary class font22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3430
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3431
@@@@@@@@@@@@@@@@@@@@@!!X @@@@@@@!!X @@@6H@@@@@@DP6H@@@Y!!H@@@@@QDY"@@@BY"@@@@ADQBY"@@@FX @@@@@DQCX @@@6H@@@@@QEP6H@@@@ @@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3432
ADUDP @C@@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@ADT2@@@CH@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@QDT2@@@CH@@@@@QDQSH@@@@ @@@@@DQE
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3433
P @@@@@@@@@@@DQ@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 150 150 150 213 213 213 215 48 48 134 54 54 240 240 240]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G @OG0@O''<@O7>@O<?@A>? A?? A??@A<?@A<>@A<>@A<>@A=>@C?>@G<>@C<\@@8D@@H@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3434
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3435
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3436
forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3437
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3438
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3439
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3440
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3441
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3442
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3443
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3444
     self forward22x22_3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3446
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3447
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3448
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3449
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3450
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3451
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3452
        constantNamed:#'GenericToolbarIconLibrary class forward22x22_3DIcon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3453
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3454
UUUUUUUPUUUUUUUPUUUUUUUPUUUQUUUPUUTJUUUPUUB*)UUPUP***%UPUQU*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5R*)UUPWUR*)UUPWWR*)UUPWUJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3455
UUJ**UUPUT***%UPUT***%UPUR***)UPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C@@@O0@@?<@C??@C??@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@A?>@A?>@C??@A??@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3456
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3457
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3458
help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3459
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3460
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3462
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3463
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3464
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3465
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3466
     self help22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3467
     ImageEditor openOnClass:self andSelector:#help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3468
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3469
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3470
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3471
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3472
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3473
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3474
        constantNamed:#'GenericToolbarIconLibrary class help22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3475
        ifAbsentPut:[(Depth1Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O0A@_8@@?<@@8\C@8\A@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@C@@@@@@@@@G@@@G@@@G@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 127 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O0@@_8@@?<@@8\@@8\@@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@@@@@@@@@@@G@@@G@@@G@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3476
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3477
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3478
home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3479
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3480
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3481
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3482
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3483
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3484
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3485
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3486
     self home22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3487
     ImageEditor openOnClass:self andSelector:#home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3488
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3489
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3490
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3491
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3492
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3493
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3494
        constantNamed:#'GenericToolbarIconLibrary class home22x22Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3495
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3496
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQH2DQ@@@@@@@@DQH4L!!DP@@@@@@DQH4QCHQD@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3497
DQH4QDP2DQ@@@@DQH4QDQDL!!DP@@DQH4QDQDQCHQD@D"H4QBH"ADP0@A@RH#QBH"H QC@@D@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MD
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3498
IUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 128 128 128 192 192 192 100 128 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3499
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3500
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3501
keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3502
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3503
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3504
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3505
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3506
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3507
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3508
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3509
     self keyboardMapping22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3510
     ImageEditor openOnClass:self andSelector:#keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3511
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3512
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3513
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3514
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3515
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3516
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3517
	constantNamed:#'GenericToolbarIconLibrary class keyboardMapping22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3518
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3519
@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@@@B%P@@@@@JUT@@@@@)TE@@H@BUTQP@@@ETTQ\@@@JTTU?@@@J$@W<@@@B)U_0@@@@*U?@@@@@J''<@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3520
@@B''0@@@@@@''@@@O@@@D@@@@@@@@@@@K@@@@@@@@@@@@@@@M@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 128 128 128 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@G@@@O @@_0@@?8@A?<@C?>@G??@G?? G??@C?>@A?<@@?8@@_0@@O @@G@@@B@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3521
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3522
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3523
languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3524
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3525
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3526
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3527
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3528
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3529
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3530
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3531
     self languages22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3532
     ImageEditor openOnClass:self andSelector:#languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3533
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3534
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3535
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3536
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3537
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3538
    ^Icon
3718
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  3539
        constantNamed:'GenericToolbarIconLibrary class languages22x22Icon'
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  3540
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3541
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B (JB (@@@@@@@@F <O@@@@@@@@@@@ZJB (GA0\GA0(JB VE @@@@@@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3542
F" (JA0\GA0\GB (E!!X@@@@@@@@@@A((JA0\GA0\GA0\JA(Z@@@@@@@@@@@ZJB \GA0\GA0\GB (J@@@@@@@@@@@F" (@@X\G@X@GA0(JB B@@@@@@@@@A((
3718
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  3543
J@@FB0,F@@(J@@(J@ @@@@@@@@@ZJB @@@XFB0X@@@TEAPTE@@@@@@@@F" (@ALFA!!4S@0LBAPTEB@@@@@@@@AT@@@@]H2L#GP8QDQLSG2@WE0$@@@@U@@@@
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  3544
GQ<_G1<QDQDSD1<_E1\I@@@@A@@@@AL]GRLSD!!HMF1,_G1<_BP@@@@@@@@@SFQ$YFRT%EALSHRP^G $@@@@@@@@@D1$"H"H%IQPSD2D$G"HI@@@@@@@@@AP"
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  3545
H!!$"H"H"H"H"H"H"A0@@@@@@@@@PFA LA2H"CBH"I!!$"H 0@@@@@@@@@C@0L@@@GA00GA00LA0\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3546
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 32 32 32 48 48 48 49 48 49 54 54 54 69 69 69 75 67 22 82 82 82 85 14 14 89 89 89 105 105 105 106 88 25 110 19 19 113 19 19 131 129 131 134 122 39 149 25 25 149 26 26 158 27 27 158 140 45 164 161 164 164 161 172 165 43 43 177 161 52 196 175 0 197 194 197 204 36 36 204 75 75 205 36 36 205 113 38 212 66 66 216 81 81 223 72 72 227 202 66 231 120 120 231 123 123 255 129 0 255 238 162 255 251 229 255 255 255]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O \@??>@??>@??>@??>@???0???0???0???8???8???8???89??81??81??81??81??8A9?0A@@@A@@@A@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3547
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3548
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3549
left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3550
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3553
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3554
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3555
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3556
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3557
     self left22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3558
     ImageEditor openOnClass:self andSelector:#left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3559
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3560
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3561
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3562
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3563
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3564
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3565
        constantNamed:#'GenericToolbarIconLibrary class left22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3566
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3567
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3568
UZUUUUUPUVUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@A @@C @@G @@O??<_??<???<???<_??<O??<G @@C @@A @@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3569
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3570
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3571
leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3572
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3573
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3574
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3575
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3576
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3577
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3578
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3579
     self leftDown22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3580
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3581
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3582
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3583
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3584
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3585
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3586
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3587
        constantNamed:#'GenericToolbarIconLibrary class leftDown22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3588
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3589
UUUUUUUPU@@@@@@PUJ****)PUJ****)PUJ****)PUJ****)PUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUP@J*@UUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3590
***)UUUPZ**%UUUPV**UUUUPU*)UUUUPUZ%UUUUPUVUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G8@@G8@@G8@@G8@@G8@@G8@@G8@@??@@??@@_>@@O<@@G8@@C0@@A @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3591
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3592
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3593
load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3594
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3595
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3596
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3597
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3598
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3599
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3600
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3601
     self load22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3602
     ImageEditor openOnClass:self andSelector:#load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3603
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3604
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3605
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3606
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3607
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3608
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3609
        constantNamed:#'GenericToolbarIconLibrary class load22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3610
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3611
UUUUUUUPUUUUU?UPUUUUW*5PU???>*/PU:****)PUUUUUUZPP@@@@@EPS?????&PS?????%PS?????&PS?????%PT?????9PT?????9PT?????9PT?????9P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3612
T?????9PT?????9PUO????>PUO????>PUO????>PU:*****PUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3613
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3614
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3615
loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3616
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3617
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3618
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3619
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3620
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3623
     self loadFromMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3624
     ImageEditor openOnClass:self andSelector:#loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3625
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3626
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3627
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3631
        constantNamed:#'GenericToolbarIconLibrary class loadFromMethod22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3632
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3633
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3634
L3L3L3L3L2DQDCL:(3L3N*L3HRDPL3**(3N*(3L!!DQDCL:*#N*N*L3HQDPL3**(:L:(3L!!DQ@3N*N*(3*#L2DQDCL:(3(3N*L3HQDPL3*#L3L:(3L!!DQ@3N*
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3635
L3L3*#L2DQDPL3*#L3N*(3L!!DQ@3N*L3L3*#L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3636
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3637
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3638
loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3639
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3640
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3641
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3642
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3643
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3644
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3645
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3646
     self loadImage22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3647
     ImageEditor openOnClass:self andSelector:#loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3648
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3651
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3653
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3654
        constantNamed:#'GenericToolbarIconLibrary class loadImage22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3655
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3656
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3657
L3L3L3L3L2DQDCMDY''\3L3L3HRDPL4Q&]3L3L3L!!DQDCMU&X 3L3L3HQDPL5VY"CL3L3L!!DQ@3QFY7L3L3L2DQDCMDY''\3L3L3HQDPL5VY"CL3L3L!!DQ@3UY
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3658
&HL3L3L2DQDPL4Q&]3L3L3L!!DQ@3QFY7L3L3L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3659
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3660
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3661
make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3662
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3663
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3664
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3665
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3666
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3667
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3668
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3669
     self make22x22Icon1 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3670
     ImageEditor openOnClass:self andSelector:#make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3671
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3672
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3673
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3674
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3675
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3676
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3677
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3678
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3679
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FA @@@@@@@@@@@@@@@@@@A XF@@@FB (F@@@@A X@@@@@@@@@A (JB XFB (JB XFAP(GA @@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3680
@@XJB (JB (JB (JB (JA0X@@@@@@@@A@P(JB (JB (JB (JA0TE@@@@@@XFA XFB (JA0TA@P(JB TEA XF@@XGB (JB (JA0TA@@@AB (JB (JB XFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3681
B (JB \AAP\A@P(JB (JB (E@PXFA (JB (JAPTEAP\JB (EAPTE@PDA@PDFB (JB (JB (JB (EAPDA@PDA@PDFB (JB (JB (JB (JB \E@PDA@@DFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3682
B (JB (JB (JB (JB XA@@@BA@(JB HBB (JB (DA@PJB (F@@@@@@DGA0DA@PXJB (F@PDAA XF@P@@@@@A@PDA@PDFB (JA DA@PDA@PD@@@@@@PDA@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3683
A \JA0XA@@DA@PDA@@@@@@@A@PD@@@DFA XA@@@@@PDA@@@@@@@@@@@@@@@A@PDA@P@@@@@@@@@@@@@@@@@@@@@@@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@A
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3684
@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C@@C''#@G?? G?? G?? _??8???<???<???<???<???<_??8_??0O??0O??0O?70GO# @O @@O @@G@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3685
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3686
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3687
make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3688
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3689
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3690
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3691
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3692
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3693
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3694
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3695
     self make22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3696
     ImageEditor openOnClass:self andSelector:#make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3697
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3698
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3699
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3700
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3701
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3702
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3703
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3704
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3705
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3706
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0KC 0KC@@@@@@@@@@@@@@@@@@NC@,NB00LB00KC@0@@@@@@@@@@@@@C 8NC@0NC 0LC 0L@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3707
@@@@C@8NC@0NC 0@@@@@@@@@@@@@@@8NC 8NC@@@C@0NC 0L@@@@@@@@@@@MCP@NC 8@@@8NC@@NC @@@@@@@@@@CP@MC 8NC 8NC@8N@@8@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3708
CP8NC 8NC 8NC 4@@@@@@@@@@@@@C@4@C @NC @M@@8M@@@@@@@@@@@@@@0@C@4@C 8@CP4@CP@@@@@@@@@@@@@@@@0M@@4M@@4M@@@@@@@@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3709
CP@NC @MCP@@@@@@@@@@@@@@@@@@@@@@C 8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248 88 88 88 184 252 248 0 128 128 0 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@O0@A?>@C??@C??@C??@G?? G?? G?? G?? C??@C??@C??@@?<@@?<@@G @@@@@@@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3711
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3712
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3713
memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3714
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3715
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3716
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3717
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3718
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3719
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3720
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3721
     self memory22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3722
     ImageEditor openOnClass:self andSelector:#memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3723
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3724
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3725
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3726
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3727
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3728
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3729
	constantNamed:#'GenericToolbarIconLibrary class memory22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3730
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3731
@@@@@@@@@@@@@@@@@@@@@@?0@@@@@@@@@@@L;8;!!0@@@@@@@@@VL0W\,@@@@@@@L<T,W]43@@@@@@I,"8Z(R-10@@@@I<,,Z**Q78P@@@L24DZ****E0H@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3732
<,EM7Z**E00P@LTR9M7]7ZE0H50@=RE0C]7]E0BF?0<,E0@@C]Q0HREPBK-0@@@@Q0T?H\@KTA4@@@^-4_=\@@H A@@@^ JOG<@@@ID@P@^ GE3O@@@@AP@D
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3733
R EO:O0@@@@@T@4PT%3,@@@@@@@E4G_58%@@@@@@@@AZ\QGL0@@@@@@@@@@@1<@@@@@@@@@@@@@D@@@@@@@b') ; colorMapFromArray:#[0 0 0 80 80 80 160 160 160 240 240 240 64 64 64 144 144 144 224 224 224 48 48 48 128 128 128 208 208 208 32 32 32 112 112 112 192 192 192 16 16 16 96 96 96 176 176 176]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A @@G>@@G?@@_? @??0A??0C??8C??8O??<O??<_??8_??8_??0_?? O??@G??@C?<@A?8@@?8@@C @@A@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3734
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3735
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3736
new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3737
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3738
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3739
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3740
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3741
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3742
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3743
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3744
     self new22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3745
     ImageEditor openOnClass:self andSelector:#new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3746
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3747
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3748
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3749
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3750
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3751
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3752
        constantNamed:#'GenericToolbarIconLibrary class new22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3753
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3754
@@@@@@@@AUUUUP@@A????2@@A????2 @A????0@@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3755
A?????8@A?????8@A?????8@A?????8@A?????8@C*****(@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3756
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3757
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3758
newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3759
    "This resource specification was automatically generated
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3760
     by the ImageEditor of ST/X."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3761
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3762
    "Do not manually edit this!! If it is corrupted,
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3763
     the ImageEditor may not be able to read the specification."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3764
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3765
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3766
     self newMenuItem22x22Icon inspect
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3767
     ImageEditor openOnClass:self andSelector:#newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3768
     Icon flushCachedIcons
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3769
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3770
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3771
    <resource: #image>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3772
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3773
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3774
	constantNamed:#'GenericToolbarIconLibrary class newMenuItem22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3775
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3776
@@@@@@@@@@@@@@@@@@@ADP@@@@@@@@@CL3L3@@@@@@@@@@L3L3L@@@@@@@@@@@@@@@@H@@ @B@@QDQDQDQFAFAJ@@AL3L3L3L3 8N@@@D3L3L3L3L8"B@@@S
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3777
L3L3L3"H"H"H@AL3L3L3L3NH  @@D3L3L3L3NC 8@@@2H"H"H"JBJBJ@@@@@@@@@B@@H@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3778
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@_??<_??8_??8_??8_??<_??8_??8_??8_??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3779
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3780
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3781
paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3782
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3783
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3784
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3785
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3786
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3787
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3788
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3789
     self paste22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3790
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3791
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3792
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3793
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3794
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3796
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3797
        constantNamed:#'GenericToolbarIconLibrary class paste22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3798
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3799
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3800
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3801
L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@@@@@@L"H"H"H"H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<???<???<???<???<???<??8@??8@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3802
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3803
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3804
pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3805
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3806
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3807
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3808
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3809
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3810
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3811
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3812
     self pasteMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3813
     ImageEditor openOnClass:self andSelector:#pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3814
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3815
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3816
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3817
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3818
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3819
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3820
        constantNamed:#'GenericToolbarIconLibrary class pasteMenuItem22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3821
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3822
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3823
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@CH"H"H"H"@QDQD@@@@@@@@@@ADQDP@@@@@QDQDQDQDQ@@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3824
DQDQDQDQD@@@@@DQDQDQDQDP@@@@@QDQDQDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<@??<@??<@??<@??<@??<@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3825
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3827
printer22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3828
    ^ self printer22x22Icon1
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3829
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3830
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3831
printer22x22Icon1
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3832
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3833
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3834
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3835
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3836
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3837
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3838
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3839
     self printer22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3840
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3841
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3842
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3843
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3844
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3845
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3846
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  3847
        constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon1'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3848
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3849
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3850
@@@A@@@@@@@@@@@@@@@@@P@@@@@@@@@@@P@A@PD@@PD@@PD@@PDA@P@@@@@@@P@@@@@@@@@@@@@@@@DD@PPA@@@@@PDA@PDA@PDA@PDA@PDD@PPA@P@@@PPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3851
A@PDA@PDA@PDA@PD@PPAAPD@@@DA@PDA@PDA@PDA@PDA@PDAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTE@P@@@PTEAPTEAPTEAPTB@ HEAPDEAPD@@@DEAPTE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3852
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3853
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3854
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 255 0 129 129 129 194 194 194 105 133 190]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3855
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3856
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3857
printer22x22Icon2
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3858
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3859
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3860
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3861
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3862
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3863
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3864
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3865
     self defaultIcon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3866
     ImageEditor openOnClass:self andSelector:#defaultIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3867
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3868
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3869
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3870
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3871
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3872
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  3873
        constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon2'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3874
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3875
QDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@ADQDQ@QDQDQDQDADQDQDAD@@AD@@PDQDQD
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3876
ADQDQDQDPDQDQDPD@@P@P@P@@DQDPDQDQDQDQ@DAADP@@@@@@@@@DA@DPADQDQDQDQDA@0Q@@@@@@@@@@@@3AD@3L3L3L2H#LCADPCL3L3L3H"L0ADQ@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3877
@@@@@@ADQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 194 194 194 255 255 0 105 133 190 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3878
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3879
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3880
reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3881
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3882
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3883
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3884
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3885
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3886
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3887
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3888
     self reload22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3889
     ImageEditor openOnClass:self andSelector:#reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3890
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3892
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3893
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3894
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3895
        constantNamed:#'GenericToolbarIconLibrary class reload22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3896
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3897
@@@@@@@@@@@UT@@@@@EU@D@@@@UT@@@H@AUP@@@@@EU@@@@@@EU@@@@E@EU@@@@@@EU@@@@@AUUT@@@@@UUP@@@@@EU@@@@@@AT@@@@@@@P@@@@H@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3898
@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@G@@@@@@@J@@@@@@@I@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 129 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G<C@_?C@??#A?C3C>@;G<@KG<@CG<@C??$C_?NCO>_CG<?#C9?3A3?;@''??@@?#P@?C\A?COC>CG?<CC?8C@? C') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3899
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3900
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3901
removeTab22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3902
    "This resource specification was automatically generated
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3903
     by the ImageEditor of ST/X."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3904
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3905
    "Do not manually edit this!! If it is corrupted,
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3906
     the ImageEditor may not be able to read the specification."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3907
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3908
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3909
     self close22x22Icon inspect
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3910
     ImageEditor openOnClass:self andSelector:#close22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3911
     Icon flushCachedIcons
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3912
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3913
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3914
    <resource: #image>
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3915
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3916
    ^Icon
3796
e91b782c288c invalidkeyInImageResourceMethod
Claus Gittinger <cg@exept.de>
parents: 3794
diff changeset
  3917
        constantNamed:#'GenericToolbarIconLibrary class removeTab22x22Icon'
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3918
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3919
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3920
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3921
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3922
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3923
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3924
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3925
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3926
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3927
right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3928
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3929
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3930
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3931
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3932
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3933
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3934
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3935
     self right22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3936
     ImageEditor openOnClass:self andSelector:#right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3937
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3938
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3939
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3940
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3941
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3942
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3943
        constantNamed:#'GenericToolbarIconLibrary class right22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3944
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3945
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3946
UUUUUIUPUUUUUEUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@F@@@G@@@G ???0???8???<???<???8???0@@G @@G@@@F@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3947
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3948
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3949
save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3950
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3951
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3953
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3954
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3955
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3956
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3957
     self save22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3958
     ImageEditor openOnClass:self andSelector:#save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3959
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3960
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3961
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3962
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3964
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3965
        constantNamed:#'GenericToolbarIconLibrary class save22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3966
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3967
AL3L3L@PM3L3L0?PML3L3L=PM3L3L0=PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM@@@@@?PO??????PO??????PO??????P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3968
O=UUUU?PO=???[?PO=5O?Z?PO=6O?Z?PO=6O?Z?PO=0O?Z?P5U***U5P') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3969
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3970
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3971
saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3972
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3973
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3975
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3976
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3977
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3978
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3979
     self saveAsMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3980
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3981
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3982
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3983
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3984
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3985
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3986
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3987
        constantNamed:#'GenericToolbarIconLibrary class saveAsMethod22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  3988
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3989
@A@0LC@0LC@0@@DCD0LC@0LC@0@3LPLPLD@0LCP0LCLQ@1LCQ@LCQ@L@L1DCDCADPCQDLC@3LPLS@4QDQDPC@CL1@1@0QCQ@QC@0L3DCD0MD@0MD@0@3LPLP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3990
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3991
L3L3LRL3LPL3LSDPL3L1H#L1@3L1LR@3L3D"L3DCL3D1HCL3LRH3LPL3LS@@L3L1H#L1LQDQH"H"H"DQLQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3992
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3994
start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3995
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3996
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3997
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3998
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3999
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4000
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4001
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4002
     self start22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4003
     ImageEditor openOnClass:self andSelector:#start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4004
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4005
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4006
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4007
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4008
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4009
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4010
        constantNamed:#'GenericToolbarIconLibrary class start22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4011
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4012
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4013
<^@@@@@@@@@@@@;18@@@C!!G.@@@@C/G @@@@G>@@@@@N;.;.; @_8@@@@@;18@@@@A? @@@@C/G @@@@G>@@@@@N<^@@@@@_8@@@@@;.;.;.@A? @@@@C/G
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4014
@@@@G>@@@@@N<^@@@@@_8@@@@@;18@@@@@@@@@@@C.; @@@@DQ@@@@C ; 8@@@A&X@@@C 8@8N@@@"H"@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4015
@@@AC@DAG DAG?<@G N@G N@G N@G?.@G N@G _@G _@G?_@G _@G _@G _@G?_@G ? G!!?0G!!?0G!!.PKQNPT(_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4016
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4017
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4018
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4019
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4020
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4021
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4022
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4023
stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4024
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4025
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4026
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4027
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4028
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4029
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4030
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4031
     self stop22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4032
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4033
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4034
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4036
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4038
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4039
        constantNamed:#'GenericToolbarIconLibrary class stop22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4040
        ifAbsentPut:[(Depth1Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A?>@A?>@A?>@A?>@A?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 0 0 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@?<@A?>@C??@G?? O??0_??8_??8_??8_??8_??8_??8_??8_??8_??8O??0G?? C??@A?>@@?<@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4041
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4042
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4043
up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4044
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4045
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4046
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4047
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4048
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4049
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4050
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4051
     self up22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4052
     ImageEditor openOnClass:self andSelector:#up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4053
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4054
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4056
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4058
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4059
        constantNamed:#'GenericToolbarIconLibrary class up22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4060
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4061
UUURUUUPUUUJ%UUPUUT*)UUPUUR**UUPUUJ**%UPUT***)UPUVU*%UUPUUT*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5T*%UUPWUT*%UUPWWT*%UUPWUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4062
UUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUTUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@@G @@O0@@_8@@?<@A?>@A?>@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4063
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4065
upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4066
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4067
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4068
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4069
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4070
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4071
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4072
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4073
     self upRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4074
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4075
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4076
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4078
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4079
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4080
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4081
        constantNamed:#'GenericToolbarIconLibrary class upRight22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  4082
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4083
UUUUT%UPUUUUT)UPUUUUT*UPP@@@@*%PR*****)PR******PR*****)PR*****%PR*UUU*UPR*UUT)UPR*UUT%UPR*UUTUUPR*UUUUUPR*UUUUUPR*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4084
R*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPYU%UUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@L@@@N@@@O@_?? _??0_??8_??8_??0_?? _ O@_ N@_ L@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4085
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4086
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4087
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4089
baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4090
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4091
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4092
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4093
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4094
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4095
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4096
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4097
     self baseImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4098
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4099
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4101
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4102
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4104
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4105
	constantNamed:#'GenericToolbarIconLibrary class baseImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4106
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4107
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4108
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4109
A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XF@@@@BY&H!!DQ&Y&XF@@@@BY&H!!DQ&Y&XF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4110
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4111
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4112
    "Modified: / 06-02-2007 / 19:41:08 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4113
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4115
baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4116
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4117
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4118
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4119
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4120
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4122
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4123
     self baseMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4124
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4125
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4126
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4127
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4128
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4129
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4130
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4131
	constantNamed:#'GenericToolbarIconLibrary class baseMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4132
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4133
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4134
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4135
@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R]2I7H'']2TE@@@@@RH"H"H"H"TE@@@@AUUUUUUUUUTE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4136
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4137
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4138
    "Modified: / 06-02-2007 / 19:41:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4139
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4140
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4141
baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4142
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4143
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4144
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4145
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4146
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4147
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4148
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4149
     self baseWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4150
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4151
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4152
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4153
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4154
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4155
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4156
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4157
	constantNamed:#'GenericToolbarIconLibrary class baseWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4158
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4159
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4160
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4161
AUUUT T"H%H@@@@@ARH"T T"H%H@@@@@ARH"T T"H%H@@@@@AUUUT UUUUH@@@@@@"H"H H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4162
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4163
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4164
    "Modified: / 06-02-2007 / 19:41:03 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4165
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4166
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4167
bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4168
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4169
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4170
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4171
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4172
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4173
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4174
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4175
     self bugReporter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4176
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4177
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4178
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4179
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4180
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4181
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4182
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4183
	constantNamed:#'GenericToolbarIconLibrary class bugReporter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4184
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4185
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4186
Q@PA@@@@AADQQ@QD@@P@@@@@ADQDQD@DP@@@@@@@ADEAPTPD@BH"H @@ADPTD@P@H"L3L2@@ADEA@"@"H3L3L3H@@@@BH3LBL3L3L3L @@@BH3LBL3L3L3L
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4187
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4188
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@??8@??8C??8C??8O??8O??8???8???8???<???0???8???<???>???>???>A??>_??>O??>@[?<@B?8@F_0@H1,@C@0@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4189
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4190
    "Modified: / 06-02-2007 / 19:41:01 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4191
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4192
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4193
changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4194
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4195
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4196
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4197
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4198
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4199
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4200
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4201
     self changesBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4202
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4203
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4204
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4205
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4206
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4207
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4208
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4209
	constantNamed:#'GenericToolbarIconLibrary class changesBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4210
	ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4211
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4212
AW]7UD@@A]7]U@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<A??<A??<G??<G??<_??<_??<_??<_??0_??0_??@_??@_?<@_?<@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4213
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4214
    "Modified: / 06-02-2007 / 19:40:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4215
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4216
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4217
desktop24x24Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4218
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4219
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4220
    ^self desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4221
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4222
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4223
desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4224
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4225
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4226
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4227
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4228
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4229
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4230
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4231
     self desktop24x24Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4232
     ImageEditor openOnClass:self andSelector:#desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4233
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4234
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4235
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4236
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4237
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4238
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4239
        constantNamed:'GenericToolbarIconLibrary class desktop24x24Icon2'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4240
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4241
@K^7-;^7-5" (J@&J$EAI*A2KTP@K AD@K^7-;]AI*A2KTP@K AD"BXSD085X3$N@CH2A7-;G!!,[Y:9?*5AP&9.COV>"(#U/@CJ$)WZSSI\JB&@FRYA5#X6M
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4242
^J"(\C&(@G,YRYP"H"H"G0",R$(3R!!0E_S\KV3$7@G-I%BJ2 KIQCB@8HS  H@$IY(E)E :A@A8F%BJ@ F"-HC !!NB@ T%J0&V%)VP9)@A- %2J2ZJ4LNBD!!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4243
HB@MT%J0&V%)#@9)@A- B"I(TP08HRD!!HB@MT%J0&V&\#@9)@F]LB"IQ,S !!HRD!!HBART+B0&V&\E09)@J9L%1>RHBD!!HRD!!HBART+B0&V&DWP9)@G=L%8JU
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4244
HRE*HRD H@5RT+B0T6&D.&1)@G= %@ \OF)"HRD HEIRT+A: Y2D@F2\@J- +:0%R6)"HRD HEIR,KA> XRD@V2D@EA _ET%R6(!!HS8 CUIR,KA> XRD@V2D
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4245
@E@F^J0%R6(!!HR@ T%IR,KA> XRD@ :D@I-II1@P-FH!!HR@ T%J0,G9> XRD@ :D@I.])(=E]8U-[UYVO3<?O2"E!!QDQ@ 8Q@AJ5Q)9B")5_W5=_W4!!HMCP4
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4246
GQ4]K08]@HNFQZLXJ5=.EAPTEK"!!(ZF!!"8&IF :I@HLC\U]@JWN6-+Z6V%)CP4MCEV9.F 9.@F-+Z35T''8]/[:J"\GA[E%&L@A(ZF 8Z@KV5NP:9(E1D@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4247
KWH&D08NC 8NC 8N@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N') ; colorMapFromArray:#[239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4248
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4249
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4250
dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4251
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4252
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4253
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4254
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4255
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4256
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4257
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4258
     self dos24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4259
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4260
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4261
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4263
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4264
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4265
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4266
	constantNamed:#'GenericToolbarIconLibrary class dos24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4267
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4268
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH"H"H"H"H1@@@@LRP"H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRH$H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4269
H"H"H1@@@@LRH"P"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRP"H"H"H"H1@@@@LRH"H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4270
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4271
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@D@@@D@@@\1 @%J@@%I@@%H @\3@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4272
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4273
    "Modified: / 06-02-2007 / 19:40:56 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4274
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4275
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4276
fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4277
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4278
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4279
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4280
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4281
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4282
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4283
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4284
     self fileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4285
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4286
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4287
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4288
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4289
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4290
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4291
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4292
	constantNamed:#'GenericToolbarIconLibrary class fileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4293
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4294
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@Y&Y&Y&Y&@@@@@@3@X@@@@@@F@@@@@@3@XN;.;.8F@@@@@@3@XN; @@@@@@@@@@3@XN;
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4295
=/[6=/@@@@3@X@; [6=/[6@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4296
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4297
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O?? O?? O?? O?? O??<O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4298
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4299
    "Modified: / 06-02-2007 / 19:40:54 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4300
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4302
fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4303
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4304
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4305
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4306
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4307
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4309
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4310
     self fileIn24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4311
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4312
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4313
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4314
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4315
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4316
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4317
	constantNamed:#'GenericToolbarIconLibrary class fileIn24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4318
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4319
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&XF@@@@@@@@A#L2Y&XF@@A&Y X@A#L2Y&XF@AA&Y D@A"H"Y&XF@AA&Y DCA&I&Y&XF@AA&Y DC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4320
M&I%URXF@A@@@3L3L6I%URXF@ADQD3L3L3H"H"XF@AD@@3L3L6I&Y&XF@AD@Y DCM&I$QBXF@AD@Y DCA&I$QBXF@@@@@@@@A&H"H"XF@@@@X@@@A&Y&Y&XF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4321
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4322
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?>@@?>_>?>_>?>_>?>_??>_??>_??>_??>_??>_??>_??>O>?>@ ?>@@?>@@@@EPD@HP@@ISD0IT%H]W%HITEHISEH') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4323
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4324
    "Modified: / 06-02-2007 / 19:40:51 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4325
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4326
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4327
garbageCollect24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4328
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4329
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4330
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4331
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4332
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4333
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4334
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4335
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4336
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4337
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4338
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4339
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4340
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4341
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4342
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4343
	constantNamed:#'GenericToolbarIconLibrary class garbageCollect24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4344
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4345
@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@ADQDQ@@@K.;,QF1DQDQDQ@@B;.;.1.0@@DQDQ@@.;@@.;.1@@@ADQ@@.0@@F;.1@2@ADQ@@.0@@.;.1DCHADQ@K.;@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4346
DQDQDPL DQB0.0,@DQDP@@@0DQ,K@KB0DQ@BH"H@DQ@@@@@@DQ@P@@@0DP@@@@8N@@@QDSL0D@@@C.;.8@@PL3@ @@@@@NC @@@PLC@ @@@@;.;.@@@PLC@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4347
@@@@C 8@@@@PLC@ @@B (@@AD@@PLC@ @J*** CA0@@PLC@ @@(J@L3L3@@PLC@ B***(@0L@Q@SLCL @JB CL3L0Q@CH"H@@ADQDLCADQDP@@@Q@ADQD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4348
@QD@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O"@@_6@@8>8@0^<@0>^A8@OB4A?EJG?@@G?@EG?@_''?@JG?@?G?@TG?B G?O2''?EO7?_%G?J_''?@JA<@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4349
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4350
    "Modified: / 06-02-2007 / 19:40:47 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4351
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4352
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4353
imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4354
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4355
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4357
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4358
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4359
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4360
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4361
     self imageEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4362
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4363
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4364
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4365
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4366
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4367
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4368
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4369
	constantNamed:#'GenericToolbarIconLibrary class imageEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4370
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4371
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4372
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@(@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4373
A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFXI& BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFXI* @@@@@@@@@@@@@I* @@@@@@@@@@@@@I& @@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4374
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4375
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4376
    "Modified: / 06-02-2007 / 19:40:45 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4377
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4378
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4379
installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4380
    "This resource specification was automatically generated
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4381
     by the ImageEditor of ST/X."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4382
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4383
    "Do not manually edit this!! If it is corrupted,
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4384
     the ImageEditor may not be able to read the specification."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4385
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4386
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4387
     self installAsWebPage24x24Icon inspect
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4388
     ImageEditor openOnClass:self andSelector:#installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4389
     Icon flushCachedIcons
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4390
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4391
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4392
    <resource: #image>
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4393
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4394
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4395
	constantNamed:#'GenericToolbarIconLibrary class installAsWebPage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4396
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4397
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"H"H"H@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@@@@@@%UU.;.5UU$@@@@@@%U[.;.;
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4398
UU$@@@@@@%V;.;.;-U$@@@@@@%.*.;**.5$@@@@@@%.**;.**5$@@@@@@%.**;***5$@@@@@@%.:*;***5$@@H&P@%.:*;**.5$@@@@@@%V;.;*+-U$@@@$@
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4399
@%U[.;.;UU$@@@$@@%UU.;.5UU$@@@$@@%UUUUUUUU$@@H"P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@)&Y&Y&Y&Y$@@H"P@@@@@@@@
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4400
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 191 191 191 255 0 0 240 240 0 255 255 0 100 100 100 0 255 0 0 0 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@??>@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_??>_??>N@@@@') ; yourself); yourself]
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4401
!
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  4402
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4403
leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4404
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4405
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4406
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4407
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4408
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4409
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4410
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4411
     self leftArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4412
     ImageEditor openOnClass:self andSelector:#leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4413
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4415
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4416
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4417
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4418
	constantNamed:#'GenericToolbarIconLibrary class leftArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4419
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4420
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4421
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4422
@0LA@PDK@@@@@@@@@@@@@@DL@@@MC <P@@@@DPLR@@@@@@@@@@@@@PX@@ALTEP8PDQDVE0\R@@@@@@@@@@@AAADQD1PUEQTNF@$SFP(R@@@@@@@@@@@KB!!P[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4423
GAPUEQT]GQ4]GP(R@@@@@@@@@@@@D (TG!!0TEA,_G1<[H@(R@@@@@@@@@@@@@AHJC!!< GQ4JB (JB"DK@@@@@@@@@@@@@@@RB 8^B DRD!!HRD!!HK@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4424
@@@@@@@@D (]H H@@@@@@@@@@@@@@@@@@@@@@@@@@AHJHPD@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4425
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4426
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 32 96 32 64 96 96 128 160 64 96 128 128 160 192 32 96 128 128 160 160 160 192 224 0 96 128 0 0 0 128 128 160 64 192 192 32 160 192 64 128 192 128 192 224 192 224 224 0 0 32 96 192 224 0 160 192 0 128 192 160 224 224 96 160 192 128 192 192 64 160 192 192 192 192 32 192 192 0 192 224 0 128 160 32 192 224 64 192 224 0 192 192 0 64 96 0 64 128]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4427
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4428
    "Modified: / 06-02-2007 / 19:40:42 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4429
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4430
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4431
leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4432
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4433
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4434
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4435
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4436
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4437
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4438
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4439
     self leftArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4440
     ImageEditor openOnClass:self andSelector:#leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4441
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4442
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4443
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4444
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4445
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4446
    ^Icon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4447
        constantNamed:'GenericToolbarIconLibrary class leftArrow24x24disabledIcon'
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4448
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4449
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4450
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4451
@0LA@PDK@@@@@@@@@@@@@@DL@@@FCP8O@@@@D@LQ@@@@@@@@@@@@@PX@@AHND04ODA@TEP\Q@@@@@@@@@@@AAA@PD 8SD1LME $RE0(Q@@@@@@@@@@@KB 8U
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4452
F@8SD1LYFQ$YFP(Q@@@@@@@@@@@@DP(NF!! NC!!T[F1,UE0(Q@@@@@@@@@@@@@ADJCQ,WFQ$JB (JB!!0K@@@@@@@@@@@@@@@QB 4ZB DQDQDQDQDK@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4453
@@@@@@@@DP(YGPH@@@@@@@@@@@@@@@@@@@@@@@@@@ADJG@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4454
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4455
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 25 25 25 28 28 28 57 57 57 121 121 121 89 89 89 153 153 153 80 80 80 150 150 150 185 185 185 70 70 70 0 0 0 131 131 131 124 124 124 115 115 115 176 176 176 214 214 214 3 3 3 166 166 166 96 96 96 204 204 204 144 144 144 172 172 172 134 134 134 137 137 137 92 92 92 147 147 147 156 156 156 48 48 48 51 51 51]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4456
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4457
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4458
menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4459
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4460
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4462
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4463
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4464
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4465
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4466
     self menuEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4467
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4468
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4469
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4470
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4471
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4472
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4473
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4474
	constantNamed:#'GenericToolbarIconLibrary class menuEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4475
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4476
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@QDQDQDQDQ@@@GA0@RH"H"H"H"TEAWA0@R\"H"H''H"TEAP@@@R]7\"]7\"TEAP@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4477
H"TEAP@@@P@@@@@@@@TEAP@@@QDQDQDQDQTEAP@@@RH"H"H"H"TEAP@@@R\"I2H"H"TEAP@@@R]2I7\''\"TE@C]0@RH"H"H"H"TE@@@@@P@@@@@@@@TEAP\@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4478
@QDQDQDQDQTEAP\@@RH"H"H"H"TEAP\@@R]2I7H'']2TE@CM0@RH"H"H"H"TE@C]0AUUUUUUUUUTE@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4479
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4480
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4481
    "Modified: / 06-02-2007 / 19:40:40 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4482
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4483
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4484
newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4485
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4486
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4487
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4488
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4489
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4490
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4491
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4492
     self newDataSet24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4493
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4494
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4495
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4496
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4497
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4498
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4499
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4500
	constantNamed:#'GenericToolbarIconLibrary class newDataSet24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4501
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4502
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDPDQDADQ@@@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4503
H"TE@@@@@P@@@@@@@@TE@@@@@QDPDQDADQTE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4504
@QDPDQDADQLE@0@C@RH D"HAH"T5@0@0@RH D"HAH"TC@0L@@RH D"HAH"TEL3@@@RH D"HAH"L3L3L3AUUPUUTEUUT@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4505
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8???T@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4506
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4507
    "Modified: / 06-02-2007 / 19:40:38 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4508
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4509
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4510
newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4511
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4512
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4513
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4514
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4515
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4516
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4517
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4518
     self newFileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4519
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4520
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4521
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4522
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4523
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4524
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4525
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4526
	constantNamed:#'GenericToolbarIconLibrary class newFileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4527
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4528
@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@@@@@@@@@@@ADAD@@@3@Y&Y&Y&@QDADP@@3@X@@@@@@P@@@P@@3@XN;.;.@QDADP@@3@XN; @@@ADAD@@@3@XN;
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4529
=/[0DQ@@@@3@X@; [6=/@@@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4530
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4531
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<O??>O???O???O???O??>O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4532
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4533
    "Modified: / 06-02-2007 / 19:40:36 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4534
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4535
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4536
newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4537
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4538
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4539
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4540
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4541
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4542
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4543
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4544
     self newImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4545
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4546
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4547
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4548
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4549
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4550
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4551
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4552
	constantNamed:#'GenericToolbarIconLibrary class newImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4553
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4554
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4555
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4556
A7\3LQE&Y&$FZP@IA7\3LQE&Y&ZVZPBPA7\3LQE&Y&XIBP$@BY&H!!DQ&Y&XF&Y@@BY&H!!DQ&Y&&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4557
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4558
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4559
    "Modified: / 06-02-2007 / 19:40:31 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4560
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4561
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4562
newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4563
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4564
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4566
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4567
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4568
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4569
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4570
     self newMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4571
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4572
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4573
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4574
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4575
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4577
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4578
	constantNamed:#'GenericToolbarIconLibrary class newMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4579
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4580
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4581
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4582
@QDQDQDQDQLE@0@C@RH"H"H"H"T5@0@0@R]2I7H'']2TC@0L@@RH"H"H"H"TEL3@@AUUUUUUUUUL3L3L3@@@@@@@@@@@@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4583
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4584
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4585
    "Modified: / 06-02-2007 / 19:40:29 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4586
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4587
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4588
newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4589
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4590
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4591
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4592
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4593
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4594
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4595
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4596
     self newSystemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4597
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4598
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4599
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4600
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4601
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4602
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4603
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4604
	constantNamed:#'GenericToolbarIconLibrary class newSystemBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4605
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4606
@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&@@@@@@@@@@@@@FXFX@@FY&Y&Y#@@A&XFY @FQDQDQB@@A @@A @FQDQDQB@@A&XFY @CH"H"H"@@@FXFX@@@@@@@@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4607
@@@@Y&@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4608
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4609
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<_?#>_?''?_?''?_?''?_?#>_?!!<@ @8@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4610
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4611
    "Modified: / 06-02-2007 / 19:40:26 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4612
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4613
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4614
newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4615
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4616
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4617
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4618
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4619
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4620
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4621
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4622
     self newWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4623
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4624
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4625
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4626
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4627
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4628
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4629
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4630
	constantNamed:#'GenericToolbarIconLibrary class newWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4631
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4632
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4633
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4634
AUUUT T"H%X@A @FARH"T T"H%I A A ARH"T T"H%HFA X@AUUUT UUUUH@Y&@@@"H"H H"H"Y&Y&Y&@@@@@@@@@@@@Y&@@@@@@@@@@@@@FA X@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4635
@@A A A @@@@@@@@@@X@A @F') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4636
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4637
    "Modified: / 06-02-2007 / 19:40:22 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4638
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4639
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4640
new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4641
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4642
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4643
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4644
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4645
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4646
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4647
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4648
     self new_24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4649
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4650
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4651
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4653
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4655
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4656
	constantNamed:#'GenericToolbarIconLibrary class new_24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4657
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4658
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4659
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4660
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4661
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@BR@@AT@@@8@@G?@@@8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4662
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4663
    "Modified: / 06-02-2007 / 19:40:20 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4664
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4665
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4666
redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4667
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4668
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4669
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4670
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4671
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4672
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4673
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4674
     self redoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4675
     ImageEditor openOnClass:self andSelector:#redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4676
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4677
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4678
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4679
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4680
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4681
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4682
	constantNamed:#'GenericToolbarIconLibrary class redoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4683
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4684
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,WEEKUE5-@@@@@@@@@@@@@@@@@@@@@E0>D!!</HQ%@VF4@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4685
@E!!BQ&L@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@A(O1 [FA@OEB\.LR8FV0@@@C)MS4(@@@APDQ,X@%]"VTPPKB</CE,@@C%GRT(@@@@?F1,GV0@@@@AV
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4686
@2H.LP9[@@,8PT(@@F EF1-C@@@@@@@@X#8]J2<MV0(6M4(@@FDKF1-K@@@@@@@@@FT>GB -CP 4MT(@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@AF1,E
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4687
Z @@@@A)X&I!!VP@WIBX,K4(@@@ANE!!,OU@@@@FT?B0,KB0,UGBD%JT(@@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@P1X[D4,@@E<DD1LSD1LSD1LSD4(@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4688
@@@@W T[F0%U@@@@@@@@@@@@@@@@@@@@@@@@@D(QF1,BV @@@@@@@@@@@@@@@@@@@@@@@F,=E!!,X@%(@@@@@@@@@@@@@@@@@@@@@@@A @!! [F@IZ@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4689
@@@@@@@@@@@@@@@@V HXF05P@@@@@@@@@@@@@@@@@@@@@@@@@E(BDT!!+@@@@@@@@@@@@@@@@@@@@@@@@@@AZOF,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4690
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A?@@C?0^G?8^O?<^O?>^O!!?^_@?>_@_>_@O>O!!?>O#?>O3?>G3?>G8@@C<@@C>@@A?@@@?@@@_@@@N@@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4691
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4692
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4693
reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4694
    "This resource specification was automatically generated
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4695
     by the ImageEditor of ST/X."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4696
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4697
    "Do not manually edit this!! If it is corrupted,
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4698
     the ImageEditor may not be able to read the specification."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4699
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4700
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4701
     self reload24x24Icon inspect
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4702
     ImageEditor openOnClass:self andSelector:#reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4703
     Icon flushCachedIcons
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4704
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4705
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4706
    <resource: #image>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4707
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4708
    ^Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4709
        constantNamed:'XPToolbarIconLibrary class reload24x24Icon'
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4710
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4711
\GA0\GA0\GA0\GA0\GA0\GA0[6=/[6=/\GA0\GA0\GA+N <@B0@OJU1+[6=/W@I+\GA0\GA0Z3(MJ4)YV%9RMAXIWF-\B Y+\GA0\GA+C2EXR346K3!!DT%9P
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4712
DQ\JTP-+\GA0\G@_H%\<IBT&KR</NC9YW")QX -+\GA0\FXMTTH4MSX6K"<0NC 9SFI^Z@-+\GA0\@<4U5D4MC-RW$0>NC >O$1EZ@-+\GA0Z05CD DD@0@A
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4713
DCQ^VS8>O#=EZ@-+\GA0N!!$FEA UBD]+Z!!0MR&EEO$UEZ@-+[6=/C0D#L#H\W6-+Z6,MTVELSD5SZ@-+[6=/@SMUU$%%Z6-+[ 1PXVI(ZF!!(Z@-+[6=/Z6-+
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4714
Z6-+Z6-+B @@@@@@@@@@@@E+[0H@@@@@@@@@@@@JZ6-+Z6-+Z6-+Z6-+[0-(ZF!!(ZFI"T@))Z6-+Z5-''Y4@AZ6-+[0-(T5MMT6IQCVM+Z6-,LTEHL0DNZ6-/
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4715
[0-(QTUESFIPCQ9-Z6@SGR@[BQ$(Z6-/[0-(QTUEO4QYW#PP@ @EA0DRP05$Z6-/[0-(QUMEO#8>QEM^VC04MEEWM@1+Z6-/[0-(X&!!SO#8>NC\6OS45MTIQ
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4716
CUQ+Z6=/[0-(U2)!!V#88NC\.K"0,OED"F&-+Z6=/[0-QB!!LQTVISQC8=OS5QVBDLZ6-+[6=/[0XJQ&-OBQ$;VU9^WT(+CR]+Z6-/[6=/[0ENZ6-+Z4<\C@@K
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4717
@@0''Z6-+Z6-/[6=/[6-+Z6-/Z6-+Z6-+Z6-+Z6-+Z6=/[6=/') ; colorMapFromArray:#[0 79 191 15 80 191 15 80 192 15 95 191 16 95 176 16 95 191 16 95 192 31 95 176 31 95 191 31 95 192 31 96 192 31 111 207 32 96 192 32 111 207 47 96 192 47 111 192 47 112 207 47 112 208 47 127 208 48 111 192 48 112 176 48 112 191 48 127 208 63 112 192 63 127 176 63 128 208 64 112 192 64 127 191 79 127 192 79 128 191 79 128 192 79 128 207 79 143 191 79 144 223 79 159 223 80 143 191 80 175 239 80 176 239 80 176 240 95 128 192 95 143 192 95 143 207 95 160 224 95 175 224 95 176 239 95 176 240 95 191 240 95 191 255 95 192 255 96 143 208 96 144 191 96 144 192 96 176 239 96 191 239 96 191 240 96 192 240 96 192 255 96 207 255 111 144 208 111 176 239 111 191 239 111 192 240 111 207 255 111 208 255 112 159 207 112 160 207 112 192 239 112 192 240 112 207 255 112 208 255 127 159 192 127 159 207 127 160 192 127 160 207 127 207 240 127 208 240 127 208 255 127 223 255 128 159 207 128 160 207 128 207 240 128 208 240 128 208 255 128 223 255 143 160 207 143 175 192 143 176 207 143 208 240 143 208 255 143 223 255 143 224 255 144 176 208 144 176 223 144 223 255 144 224 255 159 175 207 159 176 223 159 224 255 159 239 255 160 176 207 160 191 207 160 191 208 160 191 224 160 192 208 160 239 255 175 191 207 175 191 208 176 192 208 176 207 224 191 192 223 192 208 224 240 240 239 240 240 240]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G>F@_?.@??>A??>C??>C??>C??>G>?>G<O>G8?>@@?>_?@@_?C8_>O8_?_8_??8_??0_??0_?? _??@]?>@X_8@@@@@') ; yourself); yourself]
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4718
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  4719
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4720
rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4721
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4722
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4723
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4724
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4725
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4726
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4727
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4728
     self rightArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4729
     ImageEditor openOnClass:self andSelector:#rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4730
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4731
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4732
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4734
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4735
	constantNamed:#'GenericToolbarIconLibrary class rightArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4736
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4737
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4738
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4739
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRD0(@A H@@@@@@@@@@@@M@@TTEQLQE!!\WD 0K@@PB@@@@@@@@@@@MB <W
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4740
E1\WD!!\WD!!LYDQ(B@@@@@@@@@@@AB <[D10[GQ8QG!!$QF H@@@@@@@@@@@@AA!!(ZF!!(ZE1H^FQDZ@ @@@@@@@@@@@@@A@ HB@ HB@1DYDQ(B@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4741
@@@@@@@@@@@@@QXQF H@@@@@@@@@@@@@@@@@@@@@@@@@@0PZ@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q(B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4742
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4743
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 0 64 96 32 128 160 128 160 192 32 96 128 128 192 192 0 64 64 160 192 192 192 224 224 160 192 224 96 192 224 32 64 96 160 224 224 128 192 224 96 160 192 0 160 192 0 128 192 64 192 192 64 160 192 96 192 192 32 160 192 0 128 160 192 192 192 64 224 224 0 96 128 32 192 192 64 192 224 0 192 224 0 192 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4744
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4745
    "Modified: / 06-02-2007 / 19:40:15 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4746
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4747
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4748
rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4749
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4750
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4751
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4752
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4753
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4754
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4755
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4756
     self rightArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4757
     ImageEditor openOnClass:self andSelector:#rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4758
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4759
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4760
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4761
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4762
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4763
    ^Icon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4764
        constantNamed:'GenericToolbarIconLibrary class rightArrow24x24disabledIcon'
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4765
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4766
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4767
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4768
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRAP(@A H@@@@@@@@@@@@M@@TSE@TQEQXVD 0K@@PB@@@@@@@@@@@MB <V
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4769
E!!XVD!!XVD TODQ\B@@@@@@@@@@@AB <PAQ PFQLQD0<QE0H@@@@@@@@@@@@AA!!\WE1\WE!!HSC1DW@ @@@@@@@@@@@@@A@ HB@ HB@1DODQ\B@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4770
@@@@@@@@@@@@@QTQE0H@@@@@@@@@@@@@@@@@@@@@@@@@@0PW@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q\B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4771
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4772
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 25 25 25 0 0 0 48 48 48 102 102 102 153 153 153 80 80 80 172 172 172 44 44 44 182 182 182 214 214 214 185 185 185 166 166 166 57 57 57 204 204 204 176 176 176 144 144 144 115 115 115 96 96 96 134 134 134 163 163 163 124 124 124 92 92 92 70 70 70 156 156 156 137 137 137]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4773
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  4774
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4775
sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4776
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4777
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4778
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4779
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4780
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4781
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4782
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4783
     self sUnit24x24BaseIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4784
     ImageEditor openOnClass:self andSelector:#sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4785
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4786
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4787
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4788
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4789
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4790
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4791
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24BaseIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4792
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4793
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H"H3L0@"H"H"H"H"H3L3@BH"H"H"H"H3L3L@H"
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4794
H"H"H"H3L3L0@"H"H"H"H3L3L3@BH"H"H"H3L3L3L@H"H"H"H3L3L3L0@"H"H"H3L3L3L3@BH"H"H3L3L3L3L@H"H"H3L3L3L3L0@"H"H3L3L3L3L3@BH"H3
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4795
L3L3L3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4796
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4797
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4798
sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4799
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4800
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4801
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4802
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4803
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4804
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4805
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4806
     self sUnit24x24DebugIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4807
     ImageEditor openOnClass:self andSelector:#sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4808
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4809
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4810
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4811
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4812
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4813
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4814
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24DebugIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4815
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4816
@@@@@@@@@@@@@@@@@@@@@@@@A0XB@@@LC@0LC@0LC@0LC@(LC@0LA0@@A0\@C@0LC@0LC@0JB 0BC@0LA0@@A0\@@@0LC@0LC@0LC@0BB 0EAPTEA@\@A @L
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4817
C@0LC@TKC@0L@ (LAP(JAPL@A X@C@0LC@0EAP0LC@,@A@(KB0(EAPD@@@0LC@0LC@@EC@0E@0@EB0,KB TA@@@LC@0LC@0L@@@EAPTE@@TKB0(E@P@@C@0L
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4818
C@0LC@TEB (J@0H@AP(E@PD@@@0KC@0LC@TEB ,KAPTJAPLC@PDA@@@LC@0L@0TEB ,KAPTKB0(E@@DF@@@@B0@@@0TEB ,KAPTKB0,JAPHB@@D@@@@KB0LC
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4819
B ,KAPTKB0,KB LG@PDA@@@KB0,EAP,KAPXKB0,KB T@@@XA@P@@B0,KAPTKAPTKB0,KB0(E@@@@@@D@@@,LB0,HAPTKB0,KB0(E@@\A@PHA@@@LC@0LA PJ
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4820
B0,KB0(E@@\A@PDA@P@@C@0LC@DAB@TEAPTE@@@G@PDA@PD@@@0LC@DA@PDFA XFA X@@PDA@PDA@@@LC@DA@PDA@PDA@PDF@@DA@PDA@P@@C@DA@PDA@PDA
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4821
@PDF@@DA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 255 0 44 44 44 52 0 0 100 72 72 108 0 0 110 110 110 148 148 148 152 49 49 208 208 208 209 0 0 248 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???8???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4822
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4823
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4824
sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4825
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4826
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4827
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4828
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4829
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4830
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4831
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4832
     self sUnit24x24Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4833
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4834
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4835
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4836
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4837
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4838
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4839
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4840
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4841
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4842
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H!!DCL0@"H"H @@@!!D@L3@BH"H ???1D@L3L@H"
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4843
HQ???1D@L3L0@"H D_?1D@@3L3@BH"@AG1D@<CL3L@H"H@@QD@?0L3L0@"H <@D@??@3L3@BH"C?@@??<CL3L@H"H ?0??<CL3L0@"H"HO??<CL3L3@BH"H3
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4844
@@@CL3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4845
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4846
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4847
saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4848
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4849
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4850
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4851
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4852
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4853
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4854
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4855
     self saveImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4856
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4857
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4858
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4859
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4860
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4861
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4862
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4863
	constantNamed:#'GenericToolbarIconLibrary class saveImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4864
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4865
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@@@@@@@@@@DPL"H"H"H"H"H3D@DPL$QDQDQDQDH1D@DPL$EAQAQAEDH1D@DPL$EAQAPTQDH3D@DPL$EADQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4866
PTQDH3D@DPL$EAQAPTDTH3D@DPL$EAQAPTPTH3D@DPL$EAQAPTPTH3D@DPL$EAQAQADTH3D@DPL$QDQDQDQDH3D@DPL"H"H"H"H"H3D@DPL3L3L3L3L3L3D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4867
DPL3DQDQDQDQL3D@DPL3D3L3L3D#L3D@DPL3DQ@3L3D"L3D@DPL3D"@3L3D"L3D@DPL3D@@3L3D"L3D@DSDQD"H"H"DQLQD@DP@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4868
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 200 200 200]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4869
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4870
    "Modified: / 06-02-2007 / 19:40:12 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4871
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4872
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4873
shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4874
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4875
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4876
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4877
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4878
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4879
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4880
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4881
     self shell24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4882
     ImageEditor openOnClass:self andSelector:#shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4883
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4884
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4885
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4886
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4887
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4888
	constantNamed:#'GenericToolbarIconLibrary class shell24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4889
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4890
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIDP"H"H"H1@@@@LRP$IBH"H"H1@@@@LRP4H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4891
H"H"H1@@@@LRIDP"H"H"H1@@@@LRH4IBH"H"H1@@@@LRP$IBH"H"H1@@@@LRIDP"H"H"H1@@@@LRH$H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4892
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4893
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@H@(@H@(A/L(BIR(AI^(@)P(CIL(@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4894
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4895
    "Modified: / 06-02-2007 / 19:40:09 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4896
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4897
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4898
systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4899
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4900
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4901
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4902
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4903
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4904
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4905
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4906
     self systemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4907
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4908
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4909
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4910
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4911
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4912
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4913
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4914
	constantNamed:#'GenericToolbarIconLibrary class systemBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4915
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4916
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FY&Y&Y#@@@@@@@@@FQDQDQB@@@@@@@@@FQDQDQB@@@@@@@@@CH"H"H"@@@@@@@@@@@@@@@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4917
@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4918
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
3445
220cfaa2e2da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  4919
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@_? @_? @_? @_? @_? @_? @@ @@@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4920
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4921
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4922
uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4923
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4924
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4925
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4926
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4927
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4928
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4929
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4930
     self uiPainter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4931
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4932
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4933
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4934
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4935
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4937
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4938
	constantNamed:#'GenericToolbarIconLibrary class uiPainter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4939
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4940
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4941
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@H&PAUUUT T"H%H@@@@@AUUUT T"H%H@@@$@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4942
AUUUT T"H%H@@@$@ARH"T T"H%H@@@$@ARH"T T"H%H@@H"PAUUUT UUUUH@@H&P@"H"H H"H"H@@H&P@@@@@@@@@@@@@H&P@@@@@@@@@@@@@H"P@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4943
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 0 0 240 240 0 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4944
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4945
    "Modified: / 06-02-2007 / 19:40:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4946
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4947
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4948
undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4949
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4950
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4951
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4952
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4953
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4954
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4955
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4956
     self undoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4957
     ImageEditor openOnClass:self andSelector:#undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4958
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4959
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4960
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4961
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4962
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4963
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4964
	constantNamed:#'GenericToolbarIconLibrary class undoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4965
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4966
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[U5TR5E\[@@@@@@@@FMFP% @@@@@@F5XPA$!!K1<R
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4967
O%0@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@D)OSS(@@@A[A"81K"\TC1@XF1 ?Z@@@@D)IQ3$@@E,LK2<,DDQYX%\BFA,QT@@@@D)AN@,@V081K"HC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4968
U @@@@A[A1,[O0@@@D(7M )[CR<+GS9"@@@@@@@@P1,[AV @@D(5M@ MKR \O&T@@@@@@@@@R1,[B6D@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@D(/KBX$
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4969
E0AYXVI"ZP@@@@A*AQ,[@P@@@D()IRD\EP,KB0,KO6T@@@ATC1,VS @@@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@D(SD1LSD1LSD1LSAE<@@D,SF1YC@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4970
@@@@@@@@@@@@@@@@@@@@UP$[F0U^@@@@@@@@@@@@@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@E(BFA,VOV,@@@@@@@@@@@@@@@@@@@@@V HXF1 B
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4971
X@@@@@@@@@@@@@@@@@@@@@@@T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@Z4 Q@%(@@@@@@@@@@@@@@@@@@@@@@@@@@F,<V @@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4972
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@? ^C?0^G?8^O?<^_?<^?!!<_?@>_>@>_<@>_?!!<_?1<_?3<_?38@@G8@@O0@@_0@@? @@?@@@>@@@\@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4973
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4974
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4975
upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4976
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4977
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4978
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4979
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4980
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4981
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4982
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4983
     self upArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4984
     ImageEditor openOnClass:self andSelector:#upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4985
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4987
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4988
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4989
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4990
	constantNamed:#'GenericToolbarIconLibrary class upArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4991
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4992
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4993
@@@@@@@@@@@@@@@@@@@A@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@DFA0 DAP@@@@@@@@@@@@@@@@@@@@@@@P$@A0(HA@T@@@@@@@@@@@@@@@@@@@@AB0@@C@4N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4994
C0PE@@@@@@@@@@@@@@@@@@DF@@@LB@ MD@<DAP@@@@@@@@@@@@@@@PLGDQHHD1LHE@8UA@H@@@@@@@@@@@@AE!!\XA@<SD1LHEPPYF DB@@@@@@@@@@D\@Q0A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4995
GA4OD1LJEPD\@Q0A@ @@@@@@@@@@@@@@@!!8^C1T_A@T@@@@@@@@@@@@@@@@@@@@@E @GHATRA@T@@@@@@@@@@@@@@@@@@@@@E @GDQT_A@T@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4996
@@@@@@@@@P@!!H!!TJA@T@@@@@@@@@@@@@@@@@@@@@@P\#IATTA@T@@@@@@@@@@@@@@@@@@@@@@QXXFPPDF H@@@@@@@@@@@@@@@@@@@@@@ TEAPTE@ H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4997
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4998
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 96 128 160 0 96 128 0 0 32 128 160 192 192 224 224 0 160 192 128 128 160 32 192 192 128 160 160 96 192 224 0 192 224 32 192 224 32 160 192 64 224 224 160 192 224 64 192 192 0 128 192 0 192 192 0 128 160 32 64 96 64 96 128 32 96 128 0 64 128 0 64 96 192 192 192 0 32 96 32 128 192 128 192 224 64 192 224 128 192 192 160 224 224 96 192 192 96 160 192 64 160 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F@@@O@@@_ @@?0@A?8@C?<@G?>@O??@_?? @?0@@?0@@?0@@?0@@?0@@?0@@?0@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4999
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5000
    "Modified: / 06-02-2007 / 19:40:02 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5001
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5002
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5003
workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5004
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5005
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5006
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5007
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5008
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5009
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5010
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5011
     self workspace24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5012
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5013
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5014
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5016
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5017
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5018
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5019
	constantNamed:#'GenericToolbarIconLibrary class workspace24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5020
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5021
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C]7]7]7]7]7]7]7P@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@UTEUUUPUPTQDQ@ @UTEUUUP
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5022
T@@QDQ@ @P@E@@UPUPTQDQ@ @PTEAPUPUPTQDQ@ @P@E@@UPUP@QDQ@ @QDQDQDQDQEADQ@ @QDQDQDQDQEDDQ@ @QDQDQDQDQEDPQ@ @QDQDQDQDQEDDQ@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5023
@QDQDQDQDQDQPQ@ @QDQDQDQDQDQPQ@ @QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@2H"H"H"H"H"H#@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5024
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@????????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5025
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5026
    "Modified: / 06-02-2007 / 19:39:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5027
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5028
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5029
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5030
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5031
bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5032
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5033
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5034
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5035
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5036
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5038
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5039
     self bug28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5040
     ImageEditor openOnClass:self andSelector:#bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5041
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5042
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5043
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5044
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5045
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5046
        constantNamed:#'GenericToolbarIconLibrary class bug28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5047
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5048
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5049
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5050
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 192 192 192 255 0 0 128 0 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5051
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0L@@@#F0@@F_1@@@/>@@A/?0@@??>@G??? BG??8@A??>@G??? @???8@@[?<@@@/>@@@Y?D@@H1,@@@0L@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5052
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5053
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5055
bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5056
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5057
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5058
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5059
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5060
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5061
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5062
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5063
     self bugReporter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5064
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5065
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5066
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5067
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5068
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5069
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5070
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5071
        constantNamed:#'GenericToolbarIconLibrary class bugReporter28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5072
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5073
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5074
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5075
@@@@ADQDQD@DP@@@@@@@@@@DPTEAQ@P@H"H"@@@@@@QDEA@D@BH#L3L @@@@ADEA@"@"H3L3L3H@@@@@@@H#L0H3L3L3L2@@@@@@@"L3@#L3L3L3H@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5076
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5077
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5078
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O???@C???D@???8@O???@C???8@???>@O??? @G??8@_??>@C??? @A/
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5079
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5080
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5081
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5082
bugReporterIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5083
    ^ self bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5084
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5085
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5086
changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5087
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5088
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5090
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5091
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5092
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5093
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5094
     self changesBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5095
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5096
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5097
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5098
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5099
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5100
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5101
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5102
        constantNamed:#'GenericToolbarIconLibrary class changesBrowser28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5103
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5104
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5105
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5106
@@@@@@@H@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5107
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O??>@C??>@@??? @O?? @C??8@@??8@@O?>@@@@@@@@@@@@@Z.$7LH+-
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5108
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5109
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5110
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5111
copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5112
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5113
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5115
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5116
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5117
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5118
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5119
     self copy28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5120
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5121
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5122
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5123
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5124
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5125
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5126
        constantNamed:#'GenericToolbarIconLibrary class copy28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5127
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5128
@@@@@@@@@@@@@@@@@@@@@@EUUUU\@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_???? @@@@@@??8AUUUUWO?>@_????#?? G????8??8A????>O?
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5129
>@_????#?? G????8??8A????>O?>@_????#?? G????8??8A????>O?>@_????"** G????8@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_????
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5130
@@@N****(@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5131
@@@@@@@???@@O??0@C??<@@???@@O??0@C??<@@???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_?? @G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5132
8@A??>@@_?? @G??8@A??>@@_?? @@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5133
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5135
cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5136
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5137
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5138
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5139
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5140
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5141
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5142
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5143
     self cut28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5144
     ImageEditor openOnClass:self andSelector:#cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5145
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5146
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5147
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5148
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5149
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5150
        constantNamed:#'GenericToolbarIconLibrary class cut28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5151
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5152
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5153
L3OLL @L0@@@D3L3L3L3L302@@0@@@@SL3L3L3L3OLH@3@@@@AL3L3L3L3L<0 CL@@@@D3L3L3L3L3OB@L@@@@@SL3L3L3L3L<H@0@@@@AL3L3L3L3L33L3@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5154
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5155
H"H"H"3B@,0@@@@@@@@@@@CL3@@@CL3@@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@@@C@C@@@@@@@@@0@0@@@@L@L@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5156
@@C@C@@@@@@@@@CL@@@@@@3@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5157
_??8@G??>@A???!!@_??8PG??>LA???"@_??9 G??>PA???,@_??;@G??> A???(@_??>@G???@A???0@_??<@G???@A???0@_??>@G???0A???'' @@R@$@@D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5158
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5159
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5160
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5161
delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5162
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5163
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5164
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5165
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5166
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5167
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5168
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5169
     self delete28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5170
     ImageEditor openOnClass:self andSelector:#delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5171
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5172
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5173
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5174
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5175
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5176
        constantNamed:#'GenericToolbarIconLibrary class delete28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5177
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5178
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5179
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5180
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5181
H"H"H"@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5182
D0L2H@@@@@@@@@@@@ DSL3HB@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5183
@@@@@C??>@@??? @O??8PC??>D@???!!@O??8XC??>F@???  O??8HC??>B@????0O?? LC????@????0O???<C????@????0O???<C????@????0@@A?<@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5184
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5185
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5186
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5187
desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5188
    "This resource specification was automatically generated
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5189
     by the ImageEditor of ST/X."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5190
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5191
    "Do not manually edit this!! If it is corrupted,
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5192
     the ImageEditor may not be able to read the specification."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5193
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5194
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5195
     self desktop28x28Icon inspect
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5196
     ImageEditor openOnClass:self andSelector:#desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5197
     Icon flushCachedIcons
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5198
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5199
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5200
    <resource: #image>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5201
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5202
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5203
	constantNamed:'GenericToolbarIconLibrary class desktop28x28Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5204
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5205
@@@XFA ]FA XFA4]FA XFA XGQ4]@@@@@@@@@@@@FA XGQ4]FA XFA XFA XGQ4]GQ XFA XF@@@@A XGP,RB!! QFA ]GQ4]GQ4XGQ XFA XFA @@@@XFA D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5206
A@PDC@LKC!!HQDQ XFA4]GR@]HA X@@@]FA ]C@4DCPPMAA( HB@]GQ XDQ QFB@]F@@@GQ4XF@PDC@PGA@4SHA8^HA8 G"@^HA$ GQ @@A4]FA4MCPPMA@4D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5207
EA8 HA8 G"@ HA8^HA4X@@@]GQ4XA@PGA@ DB@\^GQ8^GQ8^HA4^GR@XF@@@FA XG!!PMA04HCP MF!!8^G"@^HA8 G"@]GQ @@A XGQ8^CP$MBP4ICQPZGA(\
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5208
F!!8^G!!8 GQ ]@@@XFA4YFPPLBP0DC@$TD1LZD1(YF!!$^GQ4XGP@@GQ4]F!!(MBP0ICP0MCAPWD1(WF!!(WG"@]FA4@@A4XGQLOC@0DC@PLA@0LCAPOEALWE!!8]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5209
GQ ]@@@]FA$LA0PG@00CC@LLA@PLA00LE@<^GQ4XF@@@FA SD@4LA00CC@LL@00LA04GCP0THB@XFA @@A XFA4YA LL@0,CB0LKC@LG@00GEA4 FA4]@@@X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5210
FA XFA4]FQLK@0LF@ LF@0XCA1L]GQ ]GP@@FA XGQ4]GQ4]GQ4]FQ$K@0,CA0LZGR@XGQ4@@A XFA4XFA4]GQ4]FA XGQ4YFP,KFQ4XGQ4]@@@@FA4]FA X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5211
FA ]GR@]GQ4]GQ4]GR@]GQ ]GP@@@@@]FA4QFA XFA XGQ XGQ4 GQ4]HA4XFA4@@@@@@A4XGQ4]GQ4]GQ4]FADXFA4]HB@]DQD]@@@@@@@QFA4]FA4]GQ4]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5212
GQ4]FA4XFADXDQDQ@@@@@@@@GQD]GQ4]HA4 GR@ GR@]GQ4XGQ4QDP@@@@@@@A4XDQ4]GQ4]GR@]GQ4]HA QFA ]DP@@@@@@@@@]@A QFA ]GR@]HB@]FADX
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5213
FA QGQ4@@@@@@@@@GQ4XDQ4QFA QFADQDQD]GQ QDQ4@@@@@@@@@@A4@@@@@@@@@@@@@@@@@@@@XDQD]@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 0 0 102 0 0 153 0 0 204 0 0 255 0 51 153 0 51 204 0 51 255 51 0 204 51 51 102 51 51 153 51 51 204 51 51 255 51 102 153 51 102 204 51 102 255 102 102 102 102 102 153 102 102 204 102 102 255 102 153 51 102 153 204 102 153 255 153 153 153 153 153 204 153 153 255 153 204 204 153 204 255 204 204 204 204 204 255 204 255 255 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5214
G?@@@A??<@@_???@G???8A???>@???? O???8C???>@???? O???8C???>A???? _???8G???<A????@_???0G???<@_???@C???0@G??<@G??>@C??? @??
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5215
?0@O??8@A??<@@O?>@@@?>@@@@@@@@@a') ; yourself); yourself]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5216
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5217
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5218
dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5219
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5220
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5221
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5222
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5223
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5224
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5225
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5226
     self dos28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5227
     ImageEditor openOnClass:self andSelector:#dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5228
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5229
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5230
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5231
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5232
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5233
        constantNamed:#'GenericToolbarIconLibrary class dos28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5234
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5235
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5236
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5237
P#@BMDEDQADQHQDTDQEBL@H4QDQDQDQDQDQDQDH0@#QDQDQDQDQDQDQDP#@BL"H"H"H"H"H"H"H"L@@3L3L3L3L3L3L3L3L0@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5238
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5239
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 194 222 222 222 125 125 125 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5240
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@@P@@@@D@@@@GLX@@BT
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5241
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5242
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5243
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5244
extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5245
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5246
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5247
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5248
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5249
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5250
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5251
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5252
     self extract28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5253
     ImageEditor openOnClass:self andSelector:#extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5254
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5255
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5256
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5257
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5258
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5259
        constantNamed:#'GenericToolbarIconLibrary class extract28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5260
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5261
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5262
@@H DEUU@P@@L3L3L2H"H"HPUUTA@@@4QCQDH"H"H"@@@@D@@CL3L3L"H"H"DQDQDP@@MDP4QC@@@"@Q@@@A@@@3L3L3L@@B@AD@UPD@@CQDMDP0@@@@DPAU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5263
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5264
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5265
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5266
@@@@@@@@@@A?<@@@_?A?8G?0_>A?<W? _?G?8G???>A???? _???8G?1?>A?<W? _?A?8G?0O>A?<@@@_?@@@G?0@@@@@@@@@@@@@@@@@@@@D@A@MED3PD*:
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5267
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5268
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5269
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5270
fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5271
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5272
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5273
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5274
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5275
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5276
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5277
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5278
     self fileBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5279
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5280
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5281
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5282
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5283
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5284
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5285
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5286
        constantNamed:#'GenericToolbarIconLibrary class fileBrowser28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5287
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5288
@@@@@@@@@@@@@@@@@@@@@@CLA&Y&Y&Y&X@@@@@@@@L0F@@@@@@A @@@@@@@@3@XN;.;.8F@@@@@@@@CLA ;.@@@@@@@@@@@@@L0FC.8O[6=/[0@@@@@@3@X@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5289
; [6=/[6@@@@@@CLA DNC6<@@F<@@@@@@L0F@A@F= [0= @@@@@@3@X@@P=/[6=/@@@@@@CLA @@A/[6=/X@@@@@@L0FC0@O[6=/[0@@@@@@3@XF<@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5290
@@@@@@CLA = @@@@@@@@@@@@@L0FA/[6=/A @@@@@@@@3@XO[6=/XF@@@@@@@@CLA @@@@@@X@@@@@@@@L0FY&Y&Y&Y @@@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5291
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5292
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5293
A??<@@_??@@G??0@A??<@@_??8@G??>@A??? @_??8@G??>@A??? @_??8@G??>@A??? @_??@@G??0@A??<@@_??@@G??0@@??<@@G??@@@@@@@G.P=0AAD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5294
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5295
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5296
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5297
fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5298
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5299
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5301
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5302
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5303
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5304
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5305
     self fileIn28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5306
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5307
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5309
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5310
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5311
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5312
        constantNamed:#'GenericToolbarIconLibrary class fileIn28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5313
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5314
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&@@@FY&A @@@FL3L&Y&X@@PY&XA@@@@X3L2Y&Y @AA&Y D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5315
@0A"H"I&Y&@@DFY&@P@CLFY"Y&Y&X@@P@@@3L3L3Y&I%UUI @ADQDSL3L3L6X&UUT&@@DP@@L3L3L6Y"H"H"X@@Q@FXA@@L0Y&I&Y&Y @AD@Y D@@0A&X&QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5316
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5317
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5318
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5319
@@@@@@@@@@@@@_?0_>G?<G?!!??A?8_?0_>W?<G?''??A????0_???<G????A?9??0_>W?<C?!!??@B@_?0@@G?<@@A??@@@@@@@@@@@@U@D@@HP@@@BT0S@@%R
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5320
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5321
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5322
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5323
garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5324
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5325
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5326
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5327
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5328
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5330
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5331
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5332
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5333
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5334
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5335
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5336
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5337
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5338
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5339
        constantNamed:#'GenericToolbarIconLibrary class garbageCollect28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5340
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5341
DQD@@@.;.1D[DQDQD@@QDP@@.;.;,[,@@ADP@ADQ@@.;@@.;.1@@@A@@DQD@B;@@@[.;DCH@D@@QDP@K,@@K.;,Q@2@P@ADQ@K.;@@DQDQDPL @@DQDKB;B0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5342
@QDQ@@@C@@@QD[B0B0,ADP@"H"@@@ADQ@@@@@@DQ@P@@@0@@DQ@@@@C 8@@ADQL3@@@Q@@@@;.;.@@DCL0H@@@@@@@@NC @@@PLC@ @@@@@@C.;.8@@A@0LB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5343
@@@@@@@@8N@@@@DC@0H@@@@@B (@@AD@@PLC@ @@@@****@LG@@A@0LB@@@@@JB CL3L0@DC@0H@@@B***(@0L@Q@SLCL @@@@(J@L3L3AD@L"H @@@@@QDQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5344
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5345
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@H@@@H@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5346
@G1@@@C>0@@A1=0@@XO^@@FG30@C0@^@AZ@? @)P?8@@@O>@@B#? @C<?8@@TO>@@_#? @B ?8@E@O>@G9S? @)>?8@?JO>@EO3? @APO @@@@@@]7]7\DUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5347
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5348
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5349
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5350
help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5351
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5352
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5354
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5355
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5357
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5358
     self help28x28Icon1 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5359
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5360
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5361
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5362
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5363
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5364
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5365
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5366
        constantNamed:#'GenericToolbarIconLibrary class help28x28Icon1'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5367
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5368
@@@@@@E@@@@@@J*(D@@@@@***)P@@@@@@J*E@@@@K.,J(T@@@;.>8*E@@@K.:;"(T@@J;..;JE@@K; N;"!!P@C+ B;,(T@@/ @K.JE@@N,@C.2E@@B>@@.3!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5369
P@@@@@.8!!T@@@@@+.1P@@@@@/.1P@@@@@N.0P@@@@@N>2D@@@@@B:8!!@@@@@@;8(P@@@@@K+H@@@@@@@@BA@@@@@@J*HP@@@@@@@JD@@@@@C/"!!@@@@@@.,(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5370
@@@@@@N>H@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 63 79 96 255 255 0 255 255 255]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5371
@@?8@@@??@@@_?8@@O??@@G??8@C??>@@???0@_??<@O???@C>O?0@?C?<@O0?>@C<O? @?C?8@@C?8@@A?<@@@_>@@@O? @@C?8@@@?>@@@O>@@@C?8@@@_
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5372
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5373
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5374
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5375
help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5376
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5377
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5378
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5379
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5380
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5381
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5382
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5383
     self help28x28Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5384
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5385
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5386
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5387
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5388
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5389
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5390
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5391
        constantNamed:#'GenericToolbarIconLibrary class help28x28Icon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5392
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5393
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5394
L0@@@@L3@@@@@CL0L3L3@@H3L3L0@@A@L3@3L3LBH#L3L3A@@D@3LCL3L0H"L3L3LD@@PCL0L3L3@"D3L1L0P@A@L3@3L3LBH!!L1L3A@@D@3LCL3L0H"HQL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5395
LD@@PCL0L3L3@"H#D3L0P@A@L3@3L3LBH"D1L3A@A@L3LBL3L0H"D3LSLD@D@3L0H#L3@"D#L3D0P@PCL3LBH#LBHRL3L3A@A@L3L3@"H0H"H3L3LD@D@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5396
L H"@"H#L3L0P@PCL3L"@"HBH"L3L3A@A@H"H"H H H"H#L2HD@D@@H"H"HB@"H"H"H@P@ADP@H"H HBH"H @DQ@@@@DP@@"H@H"H@Q@@@@@@@@@Q@@B@ @D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5397
P@@@@@@@@@@@AD@@Q@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 128 92 192 192 192 253 253 253 191 191 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5398
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5399
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5400
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5401
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5402
help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5403
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5404
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5405
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5406
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5407
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5408
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5409
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5410
     self help28x28Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5411
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5412
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5413
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5415
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5416
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5417
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5418
        constantNamed:#'GenericToolbarIconLibrary class help28x28Icon3'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5419
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5420
@@@@@@@@@@@@0@@@@@@@@E0@@@@@@@AW@@@@@@@@U\@@@@@@@EU@@@@@@CQUT@@U@@ATUU@5UP@HUEUS=UWHBEQUT?UUR@!!TUUO5UT HUEUS=UUHBEQUT?5U
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5421
R@!!TUUO=UT HUEUS?UUHH5QUT?5URBETMUO=UT !!UTMS?UUHHUU<4?5URBEU_3O=UT  @W?C?U@HH?0O<?0O2B@?<CLC?0 J ??@?<B(@B O??0(@@@@(C<B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5422
 @@@@@J@(@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 253 253 253 191 191 0 192 192 192]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5423
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5424
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5425
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5426
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5427
history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5428
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5429
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5430
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5431
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5432
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5433
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5434
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5435
     self history28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5436
     ImageEditor openOnClass:self andSelector:#history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5437
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5438
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5439
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5440
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5441
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5442
        constantNamed:#'GenericToolbarIconLibrary class history28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5443
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5444
@@@@@@@@@0@@@@@@@@@B**(@@@@@@%YV@@@@@@J**"@@@@@BU%X @@@@@***H @@@@IVU"H@@@@B**("H@@@@%YVH"@@@@J**"H @@@@@@@"H@@@@B**("@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5445
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5446
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5447
@@@@@C?8@@@?>@@@O?8@@C?>@@@??8@@O?>@@C??8@@??>@@O?? @C??8@@??>@@C?? @@??8@@C?>@@@?? @@C?8@@@?>@@@@@@@H@H@@BDB@@@<M3IHITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5448
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5449
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5450
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5451
home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5452
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5453
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5455
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5456
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5457
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5458
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5459
     self home28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5460
     ImageEditor openOnClass:self andSelector:#home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5461
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5462
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5463
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5464
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5465
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5466
        constantNamed:#'GenericToolbarIconLibrary class home28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5467
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5468
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5469
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5470
@0TEAPPA@@@@@@@@@@@@@@@@@@@@@@@D@PH@@0XFA XGB@D@@@@@@@@@@@@@@@@@@@@@BP$@@0PDA@PDA@XD@P@@@@@@@@@@@@@@@@@@@@H@@0PDAP(CAPPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5471
A PA@@@@@@@@@@@@@@@@@@H@@0PDAP(@@@LEA@PDA@D@@@@@@@@@@@@@@@H@APPDAP@@@@@@@@TDA@XD@P@@@@@@@@@@@@HCA0PDAP@@@@@@@@@@APPDA@PA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5472
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5473
@@@@@@HG@0@@EATVE1\N@@@CA H@@@@@@@@@@@@@@@@AA0L@@A QFQ([C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@XE!!0]F08@@@LG@ @@@@@@@@@@@@@@@@DG
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5474
@0@@FAHWGQ,N@@@CA0H@@@@@@@@@@@@@@@@AA0L@@A ^E14[C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@_GA4 F08@@@LG@ @@@@@@@@@@@@@@@@DG@0@@G2D[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5475
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5476
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[224 224 224 0 0 0 32 32 32 192 192 192 64 64 64 160 160 160 96 96 96 128 128 128 96 64 96 64 32 64 224 192 224 32 0 0 160 96 64 128 64 32 96 32 0 64 0 0 160 128 128 224 192 192 192 160 160 160 64 32 128 96 96 224 224 192 224 192 160 192 128 64 128 64 64 224 160 128 192 128 32 160 64 0 192 128 96 192 96 0 192 160 128 96 32 32 192 64 0 160 96 32 128 32 0 128 96 128]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5477
@@@@C0@@@@<@@@@O@@X@C0@O@@<A''8@O@[?@C0G?8@<A??@O@_?8C0O??@<G??8OC???C1???8<O??<O@??<C0O??@<C??0O@??<C0O??@<C??0O@??<C0O?
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5478
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5479
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5480
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5481
imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5482
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5483
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5484
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5485
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5486
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5487
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5488
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5489
     self imageEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5490
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5491
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5492
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5493
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5494
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5495
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5496
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5497
        constantNamed:#'GenericToolbarIconLibrary class imageEditor28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5498
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5499
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"HDQEUVY @@@@@BH"H3L QDUUY&@@@@@@HA@#L2ADQUU&X@@@@@@"H"H"HH
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5500
"I&W]0@@@@@BL3L3L "H&Y]7@@@@@@H"H"H"BH"Y%7\@@@@@@#L3L3HDQEUVY @@@@@BH"H"H QDUUY&@@@@@@H3L3L2ADQUU&X@@@@@@"H"H"HH"I&W]0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5501
@@@BL#L3L "H&Y]7@@@@@@H2L3L2BH"Y%7\@@@@@@"H"H"HBH"H"H @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5502
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5503
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5504
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@;[7/@D>%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5505
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5506
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5507
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5508
menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5509
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5510
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5511
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5512
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5513
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5514
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5515
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5516
     self menuEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5517
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5518
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5519
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5521
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5522
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5523
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5524
        constantNamed:#'GenericToolbarIconLibrary class menuEditor28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5525
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5526
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@QH"H DQHQD"H @@@@@ATBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5527
IRT%IP@@@@@BUQIU@UIRT%IR@@@@@@IRHBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUQIU@RT%IRT%@@@@@@IRHBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5528
@@@BUQIU@UIRT%IR@@@@@@H"HBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5529
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5530
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@T@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5531
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@6=D$@O(Y
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5532
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5533
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5534
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5535
paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5536
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5537
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5539
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5540
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5542
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5543
     self paste28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5544
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5545
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5546
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5547
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5548
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5549
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5550
        constantNamed:#'GenericToolbarIconLibrary class paste28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5551
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5552
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5553
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5554
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5555
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5556
@@@@@@@2H"H"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 127 127 127 127 170 170 170 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5557
@@C8@@@@>@@@@O @@O??<@C???@@???0@O??<@C???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5558
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5559
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5560
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5561
reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5562
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5563
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5564
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5565
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5566
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5567
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5568
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5569
     self reloadFromFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5570
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5571
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5572
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5573
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5574
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5575
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5576
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5577
        constantNamed:#'GenericToolbarIconLibrary class reloadFromFile28x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5578
        ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5579
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5580
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5581
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5582
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5583
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5584
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5585
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5586
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5587
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5588
reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5589
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5590
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5591
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5592
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5593
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5594
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5595
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5596
     self reloadTextFromFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5597
     ImageEditor openOnClass:self andSelector:#reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5598
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5599
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5600
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5601
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5602
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5603
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5604
        constantNamed:#'GenericToolbarIconLibrary class reloadTextFromFile28x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5605
        ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5606
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5607
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5608
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5609
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5610
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5611
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5612
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5613
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5614
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5615
sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5616
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5617
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5618
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5619
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5620
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5622
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5623
     self sUnit28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5624
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5625
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5626
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5627
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5628
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5630
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5631
        constantNamed:#'GenericToolbarIconLibrary class sUnit28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5632
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5633
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5634
H"H"H#L3L0@@H"H"H"H"H"H#L3L3@@@"H"H"H"H"H#L3L3L@@BH"H"H"H"H#L3L3L0@@H"H"H"H@@@L1L3L3@@@"H"H"HO??<A@3L3L@@BH"H"HO???1@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5635
L0@@H"H"HO???1@@L3L3@@@"H"H <_?1@O@3L3L@@BH"H"C0G1@O<CL3L0@@H"H"HO@A@O?0L3L3@@@"H"H ?0@O??@3L3L@@BH"H#LO<O??@3L3L0@@H"H#
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5636
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5637
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5638
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5639
?>A???? _???8G???>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5640
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5641
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5642
saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5643
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5644
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5646
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5647
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5648
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5650
     self saveImage28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5651
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5652
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5653
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5655
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5656
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5657
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5658
        constantNamed:#'GenericToolbarIconLibrary class saveImage28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5659
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5660
UPSL3L0A@ET7L3L0?PAUML3L3OT@US\3L3C5@ET43L3L?PAUM3L3LO4@USSL3L3=@ET7L3L0?PAUML3L3O4@US\3L3C=@ET43L3L?PAUM@@@@O4@US?????=
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5661
@ET?UUUU?PAUO7??6?4@US=T?=+=@ET?ZO?Z?PAUO4C?6/4@U]U**)WU@ET@@@@@@@AUUUUUUUUU%Y%UUUTE%%UUUUTU)UEUUUUEUUUUUUVYUUTEUTUUUUDU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5662
AUUUUUUQUPUUVUUUUUTU%P@a') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5663
C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C??>@@@@@@@@@@@@;*9R<H*(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5664
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5665
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5666
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5667
saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5668
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5669
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5670
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5671
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5672
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5673
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5674
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5675
     self saveTextToFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5676
     ImageEditor openOnClass:self andSelector:#saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5677
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5678
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5679
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5680
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5681
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5682
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5683
        constantNamed:#'GenericToolbarIconLibrary class saveTextToFile28x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5684
        ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5685
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5686
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5687
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5688
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5689
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5690
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5691
saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5692
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5693
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5694
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5695
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5696
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5697
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5698
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5699
     self saveToFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5700
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5701
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5702
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5703
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5704
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5705
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5706
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5707
        constantNamed:#'GenericToolbarIconLibrary class saveToFile28x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5708
        ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5709
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5710
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5711
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5713
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5714
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5715
search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5716
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5717
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5719
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5720
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5721
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5722
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5723
     self search28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5724
     ImageEditor openOnClass:self andSelector:#search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5725
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5726
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5727
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5728
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5729
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5730
        constantNamed:#'GenericToolbarIconLibrary class search28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5731
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5732
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5733
@@AT@D@P@@@@U@B@D@@@@EP@ A@@@@AT@H@P@@@@*@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@P@@H@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5734
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[40 40 80 212 208 200 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5735
@@@@@@@@@@@@@@@@@_A<@@G0_@@A<G0@@_A<@@G0_@@O>?8@C?/>@@?;? @O>?8@G???0O???>C???? ????8O???>C???? ??/?8O?;?>C?>?? ?8@?8O>@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5736
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5737
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5738
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5739
shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5740
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5741
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5742
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5743
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5744
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5745
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5746
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5747
     self shell28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5748
     ImageEditor openOnClass:self andSelector:#shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5749
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5750
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5751
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5752
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5753
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5754
        constantNamed:#'GenericToolbarIconLibrary class shell28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5755
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5756
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3L3L3L0@1DQDQDQDQDQDQDQDQ@CD"H"H"H"H"H"H"H#D@LRH"H"H"H"H"H"H"LP@1H"P"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5757
H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRP$IBH"H"H"H"H"LP@1ICP"H"H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRH4IBH"H"H"H"H"LP@1IBP$H"H"H"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5758
H1@CD"QDH"H"H"H"H"H#D@LRH$H"QDP$QDIDQBLP@1H"H"H"H"H"H"H"H1@CD3L3L3L3L3L3L3L3D@@QDQDQDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5759
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5760
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5761
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@A@E@@@PAP@@7&T@@QJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5762
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5763
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5764
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5765
systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5766
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5767
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5768
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5769
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5770
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5771
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5772
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5773
     self systemBrowserClassHistory28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5774
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5775
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5776
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5777
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5778
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5779
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5780
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5781
        constantNamed:#'GenericToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5782
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5783
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5784
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5785
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5786
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5787
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@8@8@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5788
??0^@O?<O0C??FF@??1!! O?<XXC??CF@@ @C@@H@A @B@>7 A0O[8@_?6>@G@=/ @ O[8@H@@@@B@<O A0O[8@_??>@G@;7 @@NY8@@@@@@@@@@@%]7/TITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5789
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5790
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5791
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5792
uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5793
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5794
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5796
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5797
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5798
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5799
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5800
     self uiPainter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5801
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5802
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5803
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5804
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5805
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5806
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5807
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5808
        constantNamed:#'GenericToolbarIconLibrary class uiPainter28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5809
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5810
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@3H"H DQHQD"H @@@@@CLBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5811
IRT%IP@@@@@BUSMU@UIRT%IR@@@@@@IRLBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUSMU@RT%IRT%@@@@@@IRLBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5812
@@@BUSMU@UIRT%IR@@@@@@H"LBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5813
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5814
@@@@@@@@@@@@@@@@@@@@@@@@T@@@AP@E@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5815
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''8???90O??>TC???  ???8HO??>A#??? X???8@O??>@C??? @???8@@@@@@@@@@@@>QN@@H$Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5816
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5817
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5818
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5819
workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5820
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5821
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5822
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5823
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5824
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5825
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5826
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5827
     self workspace28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5828
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5829
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5830
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5831
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5832
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5834
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5835
        constantNamed:#'GenericToolbarIconLibrary class workspace28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5836
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5837
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@@@AUPUUUUAUAQDQDB@@@@EUAUUUTE@@DQDPH@@@@P@E@@UP
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5838
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5839
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5840
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5841
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5842
????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@@@@@@@@@@@@ //R@HJJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5843
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5844
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5845
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5846
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5847
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5848
eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5849
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5850
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5851
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5852
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5853
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5854
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5855
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5856
     self eraseXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5857
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5858
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5859
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5860
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5861
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5862
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5863
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5864
        constantNamed:#'GenericToolbarIconLibrary class eraseXP28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5865
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5866
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5867
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5868
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5869
_(E9@@@@@@@@@@@@@@@@@@A$Y&Y&Y5(@@@A.]7]2@@@@@@@@@@@@@@@@@@@@@E%GQ4]HV A([F1-@@@@@@@@@@@@@@@@@@@@@@@@R3(:N#-IVE!!$@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5870
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5871
@@@@@@@@O"H\GA04H1,[GS8@@@@@@@@@@@@@@@@@@@@@LQ(WE1\5@@@_E!!XXO @@@@@@@@@@@@@@@@@@IALSD1L-@@@@@B@SD1T=@@@@@@@@@@@@@@@@E@4M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5872
CP4-@@@@@@@@G!!DQD#0@@@@@@@@@@@@@B0$IBP,2@@@@@@@@@@@,C 8PO@@@@@@@@@@@K PDA@\6@@@@@@@@@@@@@B\JB <8@@@@@@@@@@@B@@H3@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5873
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5874
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[209 43 1 210 43 1 211 55 15 212 43 1 212 44 1 212 55 15 214 55 15 214 56 15 214 68 29 215 44 1 216 44 1 217 56 15 217 91 57 218 44 1 218 45 1 218 56 15 219 56 15 220 45 1 221 57 15 222 45 1 222 81 43 223 57 15 224 46 1 225 46 1 225 58 15 225 140 112 226 58 15 227 47 1 228 47 1 228 58 15 228 118 85 229 95 58 229 118 85 230 47 1 230 70 29 230 83 44 230 131 99 231 47 1 231 59 15 231 165 140 232 47 1 232 190 168 233 59 15 233 107 72 233 166 140 233 166 141 233 190 168 234 48 1 234 60 15 234 166 142 234 190 168 234 201 182 235 154 128 235 166 142 235 201 182 236 120 86 236 201 182 236 214 196 237 49 1 237 60 15 237 201 182 237 202 182 237 202 184 238 203 184 238 227 210 238 236 222 238 236 223 238 236 224 238 237 222 238 237 223 238 237 224 239 49 1 239 61 15 239 85 44 239 133 100 239 167 142 239 179 156 239 203 184 239 227 210 239 227 213 239 236 223 239 237 223 239 237 224 239 238 223 239 238 224 239 238 225 239 238 226 239 238 227 240 49 1 240 155 128 240 203 184 240 227 213 240 237 223 240 238 223 240 238 226 240 239 226 240 239 227 240 239 228 240 240 226 240 240 227 241 121 86 241 227 213 242 49 1 242 61 15 242 121 86 242 203 184 242 227 213 242 229 214 243 49 1 243 121 86 243 167 142 243 205 185 244 50 1 244 62 15 244 121 86 244 206 185 245 86 44 246 50 1 246 62 15 247 50 1 247 86 44 247 122 86 247 134 101 248 51 1 248 63 15 248 122 86 249 75 29 249 98 58 249 147 114 250 51 1 250 111 72 251 63 15 251 99 58 252 51 1 252 63 15 253 52 1 254 52 1 255 52 1]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5875
@@@@@@@@@@@@@@@@@@@@@A8@@@@_@@@@G8@@@@?@C @G8C0@@?A8@@G8<@@@?^@@@G?@@@@? @@@G8@@@G?@@@C?8@@A>_@@@?C8@@_ _@@O0C8@G8@_@@<@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5876
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5877
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5878
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5879
redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5880
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5881
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5882
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5883
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5884
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5885
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5886
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5887
     self redoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5888
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5889
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5890
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5892
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5893
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5894
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5895
        constantNamed:#'GenericToolbarIconLibrary class redoXP28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5896
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5897
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5899
FTAX[P@@@@@@VDIFX0@@@@@@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@@@@@@@ZC<XF1 PC1P''K#D.A%,@@@@:ST=J@@@@@@@@@E@QF1 BU6IYQA@,K2<L
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5900
V0@@NT]IR @@@@@@@@@?F1,GV0@@@@AV@2H.LP9[@@,8PT(@@@@@@@A(AQ,[P0@@@@@@@FH>GR,/CU,JM#]J@@@@@@@@XP,[F4,@@@@@@@@@YS8\JB4MBCP5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5901
R @@@@@@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@@@@@@@Q,[AV(@@@@@ZVI"XU$@E2P&KB=J@@@@@@@@@D8VF0=T@@@@YS<KB0,KB1T\HRT)R @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5902
@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@@@@@@DLVF1MK@@A_AALSD1LSD1LSD1MJ@@@@@@@@@@A^AQ,[BUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D(Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5903
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5904
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5905
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5906
@@@@@@@@@@@@@@@@@@@@@@@@@@@A?@@@@?<G @_?!!8@O?<^@C??'' @>G=8@_@?>@G0G? A<@?8@O!!?>@C8?? @?O?8@G3?>@A>@@@@O0@@@C>@@@@_0@@@C<
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5907
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5908
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5909
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5910
undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5911
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5912
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5913
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5914
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5915
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5917
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5918
     self undoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5919
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5920
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5921
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5922
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5923
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5924
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5925
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5926
        constantNamed:#'GenericToolbarIconLibrary class undoXP28x28Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  5927
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5928
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5929
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5930
[U!!@FRD/G1H>W@@@@@@@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@@@@@@AJS44:@@@@V0X.LR8''E@<PFA,XO6 @@@@@@@@@R$%GNP@@V00/K20PQE%"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5931
U0HXF1EP@@@@@@@@@D)AN@,@V081K"HCU @@@@A[A1,[O0@@@@@@@@AJM3XJV04/J14>X @@@@@@@DL[F0U(@@@@@@@@R#T4B@4-JA0>YP@@@@@@@@AKF1,K
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5932
XP@@@@@@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@@@@@@AJK20&IA\@VVE"X&$@@@@@Z T[F0D@@@@@@@@@R"$%HQ0UB0,KB0,?YP@@@EPOF1YN@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5933
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5934
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5935
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5936
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5937
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @G ?<@A8_? @^O?<@G''??@A;>G0@_?@>@G? O A?0C8@_?!!<@G?<_@A??O0@_?38@@@A>@@@@?@@@@_0@@@O8@@@C
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5938
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5939
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5940
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  5941
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  5942
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5943
desktop32x32Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5944
    ^ self desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5945
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5946
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5947
desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5948
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5949
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5950
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5951
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5952
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5953
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5954
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5955
     self desktop32x32Icon1 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5956
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5957
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5958
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5959
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5960
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5961
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5962
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5963
        constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon1'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5964
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5965
.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*7 G>W@@B3.+*:.+*:.+*:.+*:.+*:.+*:DHA?%89"##VTAY$"
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5966
#3F3.+*:.+*:.+*:.(@O%6T@#$1LAP.YNZ(B"V\$IBROP'':&.+*:&I\[@JQ#SIPK&P5PBQ$Y$W&T,QXV*S\7M8=U_)>:.#J,B9$9NR@FFSBQ+IR1E+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5967
.+(V]#P7#5U>'';*:R3$7MCP]$[F:.+*:.+*:.+*:.+*:.+(P\#Q7UW:_.+*LHA4]GU._!!8^G!!8^G!!8^G!!39PMB^G!!8\P\#AVNI>:.(07W5>F+(^G!!8^G-KD
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5968
RE=HHC$ $Y2G!!8^VJ1P8'';*:#BB"F)FG!!8^GW4 7TC::.''@VE 6Q''H^G!!8\+!!BF2@K*$HA)2&8NC 8M_.+*:.+)0E!!X*CYF\ 8NCT3= $ \:@JQ''[8BC 8NC
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5969
 5>:.+*:\AXVJ"*A$Y2[%+!!Y[PN''*0QS#F]I 8NC 8NCW;*:.''@VE"(*I8FQWE2QCT9>G)N((G:PM:2C 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+U8,9A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5970
^8NC 8NC 5>:\AXVJ"(''XS@(O(E(LDT5"C,.NKL@^&]; 8NC 8NCW7@VE"(*I7D<ZHF-.K!!=&8NHDW"3.+):_A^C 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5971
R+N:.''*)]BT%IRT%IU<VJ"(''I2A_+)ZA$P %IRT%]@98,;*:^*$WIRT%IRT%W2(*I2\SO%=_Y06QBBT%IRU\C''"3.+)?#4&\''I2\''I1_J"\''D38>TA47Y9DH
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5972
''I2\Y(TN^KN:.)!!7E92\''I2\''E<''I1L>O#8MY3]P$P"\''HH+!!P98,;*:C268''I2\''I2\W2\SO#8>CP6ATEBQBI2\L8VEC''"3.+(OKR.\''I2\''I1_O#8>O 4
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5973
M55FK8(#''FZH"H N^KN:. <-.I2\''I2\''E=_W5>K\2<XYBLL''I2BQV9.[ 98,;*:."5ERXJ\''I2\,A0ASP #T)2\''I1QS8=WV$AXZ7"3.+*:P2-WWEQRT%IR
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5974
CEIRT%ITY#V%U5]@C!!D)&"18_ B:.+*MEU]WJ9URT%IR%T<3.U]ZD!!DTJ[T.^CX8O[L@.+*:.%)5V%)Z(W,5)U]ZPE QZ9(,W'' 6_%N3@@B:.+*:.+*:P7U@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5975
PDA@PAHN!!BZ5KE8_NC5S,0@@@K*:.+*:.+*:.+*LU1IXDXR6(B98M )S,;N_.+*:.+*:.+*:.+*:.+*:.)9DQ21^^C!!>T;L@@K*:.+*:.+*:.+*:.+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5976
.+*:@KM>[UN3@JZ:.+*:.+*:.+*:.+*:.+*:.+*:.+*:. @a') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((Depth1Image new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5977
@@@@@@@@A?@@@??8@_??>G????#????8????>O????#????8?????O????;????????????????????>?????O????3????<?????O????3????<?????O??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5978
??3????<_????G????!!????0_???@G??<@A??8@@_>@@@C8@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5979
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5980
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5981
desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5982
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5983
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5984
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5985
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5986
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5987
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5988
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5989
     self desktop32x32Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5990
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5991
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5992
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5993
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5994
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5995
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5996
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5997
        constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon2'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5998
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5999
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6000
#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N# @@-;^7-;^7VJB (BX*PTD&(GH-Q@@.@DRHI!!LNMVL9@@@2L ];^18[F6^._:-PTI.[ 8LO
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6001
,6,=UI>G[6>"(#T@@CJ$)WZSSI\JB&@FRYA5#X6M]WU4^G DAE:(*J!!0NP@@A4^PA)\JB (J%G18$YF''$S@0^J**_G%$ST46XW@9@@A;FT&TH"H"H!!<H+D)J
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6002
L4(\AYV)$)I=_VUNS#\KV3$@@G.P+9 " HA(TYT\GA0\AR@IBZ6VN&U>Y&X#S4=[C @@^4&TH+J@,%DLHC !!NB@ BP&0,G9>Y&ZY XFAZQXN@@@^A)P" HA(
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6003
+R@8HS  HEIR,KA:_#.Y&XFAIF%)VP8@@A- %2J2ZJ4LNBD!!HB@MT%J0,G9>&Y&Y XE)ZV&LC @@F6@JH&!!QCC !!HRD H@5RT+B0_'':Y&XFA V%)''H0N@@A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6004
S@("T[D8HRD!!HR@ T%J0,G)>N9&Y XFAZV&\E08@@J9L%1>RHBD!!HRD!!HBART+B0_'':Z&Y&A V%)ZXQ]C @@_42W )T!!HV(!!HR@ CUIR,KA>_)&YT8FAZV%)
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6005
!!K),@@A?XIPHGC1*X"D!!HBART%J0^''8;&Y&A XE)ZY2D@F0@@J- +:0%R6)"HRD HEIR,KA>_)*Y&XFAZV%)!!HPA[@@@TFA<URUKZ"D!!O"@MT%J0,G9>&Y%S
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6006
 XE)ZV&D!!@E,@@APA''",IT-*HRD HEIRT+B0_'':Y&XFA V%)''HRD@ 8@@I-II1@P-FH!!HR@ T%J0,G9>&)&Y XE)ZV&D!!HPBC @@&96&#4U7!!V5-U%X?O3<?
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6007
JHVE!!XVE!!QDQDQDQDPHN@@@R-TZ^P(*]W5=_W5=HRCP4MCP4LSD]GQ4]GQ4]K08@@HNFQZLXJ5=.EAPTEK"!!(ZF!!(ZF!!(X.K"X&I"X$ZC @@ 0M1U4@)\;Z6
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6008
-+YZV$MCP4MCP20UEV9.[&9.[!!(N@@A+Z6,=UI>G[6>"(''A0V1YY#A]]W[(@@PHB@!!(ZF 8@@KV5NP:9(E1D@@B:KWH&D08NC 8NC 8NC 8NC 8NC @@#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6009
#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6010
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240]; mask:((Depth1Image new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6011
@@@@@@@@@@@@@@@@@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6012
??9????>_????''????9????>_???? @@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6013
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6014
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6015
error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6016
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6017
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6018
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6019
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6020
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6021
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6022
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6023
     self error32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6024
     ImageEditor openOnClass:self andSelector:#error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6025
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6026
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6027
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6028
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6029
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6030
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6031
	constantNamed:#'GenericToolbarIconLibrary class error32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6032
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6033
@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@P@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6034
@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6035
@PDA@PDA@P@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6036
@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@DA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6037
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA@PDA@@DA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6038
@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6039
@PDA@@DA@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6040
@PDA@PDA@PDA@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6041
@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6042
@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6043
@@@@@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6044
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6045
@A?0@@A??@@A??<@@??? @_??<@O??? G???<C???? ????8_????G????3????>?????/????;????>?????/????;????>?????/????9????<_????C??
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6046
?? ????8G???<@???>@G???@@??? @G??0@@_?0@@A?0@@@@@@@b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6047
!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6048
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6049
warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6050
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6051
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6052
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6053
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6054
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6055
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6056
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6057
     self warn32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6058
     ImageEditor openOnClass:self andSelector:#warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6059
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6060
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6061
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6062
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6063
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6064
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6065
	constantNamed:#'GenericToolbarIconLibrary class warn32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6066
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6067
@@@@@@@@@@@@@@@@@@@@@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@P@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6068
@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PD@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6069
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6070
@PHB@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@ HA@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PHB@ HA@PDA@@@@@@@@@@@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6071
@@@A@PDA@ LC@ DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PHC@0LC@ DA@PD@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@ LC@0LB@PDA@P@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6072
@@@@@@@@@PDA@PHB@0LC@0HB@PDA@P@@@@@@@@@@@@@@@@@@@@@A@PDA@ HC@0LC@ HA@PDA@@@@@@@@@@@@@@@@@@@@@PDA@PHB@ LC@0LB@ HA@PDA@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6073
@@@@@@@@@@@@@@@A@PDA@ HB@0LC@0HB@ DA@PD@@@@@@@@@@@@@@@@@@PDA@PHB@ HC@0LC@ HB@ DA@PD@@@@@@@@@@@@@@@@A@PDA@ HB@ LC@0LB@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6074
@PDA@P@@@@@@@@@@@@@@@PDA@PHB@ HB@0LC@0HB@ HB@PDA@P@@@@@@@@@@@@@A@PDA@ HB@ HB@0LB@ HB@ HA@PDA@@@@@@@@@@@@@PDA@PHB@ HB@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6075
@ HB@ HB@ HA@PDA@@@@@@@@@@@A@PDA@ HB@ HB@ LC@ HB@ HB@ DA@PD@@@@@@@@@@PDA@PHB@ HB@ HC@0LC@ HB@ HB@ DA@PD@@@@@@@@A@PDA@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6076
@ HB@ LC@0LB@ HB@ HB@PDA@P@@@@@@@PDA@PHB@ HB@ HB@ LC@ HB@ HB@ HB@PDA@P@@@@@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HA@PDA@@@@@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6077
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6078
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6079
@@F@@@@A @@@@<@@@@O@@@@G8@@@A>@@@@?0@@@O<@@@G? @@A?8@@@??@@@O?0@@G?>@@A?? @@??<@@O??@@G??8@A??>@@???0@O??<@G??? A???8@??
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6080
??@O???0G???>A???? ????<O????G????9????>??????????<b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6081
! !
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6082
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6083
!GenericToolbarIconLibrary class methodsFor:'image specs-misc'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6084
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6085
DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6086
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6087
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6089
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6090
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6091
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6092
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6093
     self DirectoryUp22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6094
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6095
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6096
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6097
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6098
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6099
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6100
        constantNamed:#'GenericToolbarIconLibrary class DirectoryUp22x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6101
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6102
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6103
@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6104
@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6105
@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6106
@ @@@@@@@@@B@ HB@@LC@0L@@@HB@ HB@ HB@ H@@@@@@@@@@ HB@ @C@0LC@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6107
@@@B@ HB@@LC@0LC@0LC@0LC@0L@@@H@@@@@@@@@@ HB@ @C@0LC@0LC@0LC@0LC@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@@@@B@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6108
@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@ HB@ @@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6109
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6110
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6111
@@@@@@@0@@@@^@@@@O0@@@G>@@@C?0@@A?>@@@??0@@_?>@@G?8@@C???>@???? O???8C???>@???? O???8C???>@???? O???8C???>@???? O???8C??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6112
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6113
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6114
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6115
desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6116
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6117
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6118
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6119
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6120
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6121
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6122
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6123
     self desktop30x30Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6124
     ImageEditor openOnClass:self andSelector:#desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6125
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6126
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6127
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6128
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6129
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6130
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6131
        constantNamed:'GenericToolbarIconLibrary class desktop30x30Icon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6132
        ifAbsentPut:[(Depth8Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6133
.+*:.+*:.+*:.+*:.+*:.+*3T788,5MST5N^.+*:.+*:.+*:.+*:.+*_,;MSB#Z3T788,5MST5MS@K*:.+*:.+*: @>3T34@,;MSB#Z3T788^E8,Q4QS@JZ:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6134
&I\[@KMS_#X@T348,;MSB#Y8K*B6!!AEXD%^L@@B:+C48M AS_#Y8T348G58,-RZDC!!I@PDA@PGUC@@B:^C48M''!!S_#Y8W"2ZZ1EXPE)W)SU;%YVU%WUZ@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6135
^C4=NG .-R$TDQIZU;$3S9URT%IRT%IRT!!VM@@B:^G ,&!!DNPE]W)SU&UEIRT%HLT%IRT%IRT"-C@I>:U5]WPH>OS5F\T%IRT%HH""@ $YF\!!8^G!!2.DH[H@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6136
U5^O 8NC 8MRT%HH"%APO#8VCYF\ 8NCT3= $ \:U5]/ 8NC 8M_RC]PO+)0E!!X*CYF\&9Z8VV4C):,DU5^O 8NC 8M_.+*:\AXVJ"('' YE\WIDMS''8^$:" 
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6137
U5^O 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+T@U5^O 8NC 8M_.''@VE"(*I6D0JC:AZCAEMX ;@@@@U5^O 8NC 8M_\AXVJ"(''\S1( Z68.G6[ 8 Q@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6138
U5^O 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]@@B:U5^OIRT%IRU_E"(*I2\ W::V YDHIRT%IWPN@@B:U5^OIRT%IRU_J"(''I1L>W5=''CYDHIRVCIU0N@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6139
U5^O''I2\''I1_J"\''D38>TA47Y9DH''I2C 8TN@@B:U5^O''I2\''I1_I1L>O#8MCXEPTIDH''I2B 8TN@@B:U5^8''I2\''I1_O#8>O 5_M5=FK8(#''I2C 8TN@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6140
KR4+''I2\''I1_O#9_"7L/FFP#CI2\ %EQ[&8N@@B:KR68T%J\''I1_W5=MBBMRT%IRCEEO#5]ZPE!!+@@B:P4L+T%IRT%IRCEIRT%ITY#V%U5]@C!!D)&"18@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6141
#X4UT%IRT%IRT)UOL;%WV!!HQEB&5K'' 6NC58@@B:V%)5%YVU^3V%U5)@VAE+&"1^^CY>T;L6NC4@@K*:P4M5PDA@PAHN!!BZ5KE8_NC5S,3Y>T;L@@K*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6142
#H1WD!!FD-*@.^CXJT;N3''35S,0@@@K*:.+*:.+*:'')9DQ598NG9S,3XJT;N3'';*:.+*:.+*:.+*:.+*:''+N3_%N3NG9S,0@@.+*:.+*:.+*:.+*:.+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6143
') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((Depth1Image new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6144
@@@@@@@@A>@@@G? @@??8@A??>@G??? O???8G???>A????8_????G????1????<_???>G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6145
?>A???? _???0G??? A??>@@_?<@@G?@@@@<@@@@') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6146
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6147
3196
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6148
fileOpenIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6149
    <resource: #programImage>
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6150
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6151
    ^ self loadFromFileIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6152
!
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6153
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6154
greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6155
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6156
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6157
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6158
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6159
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6160
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6161
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6162
     self greenThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6163
     ImageEditor openOnClass:self andSelector:#greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6164
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6165
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6166
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6167
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6168
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6169
    ^Icon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6170
        constantNamed:'SystemBrowser class greenThumbUpIcon'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6171
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6172
@@@@@@@@@@@@A)<@@@@@@@@G( @@@@@@@@^/@@@@@@@@A9@@@@@@@@C)$@@@@@@@A)+<>]BM]0BZ(->&E''3&@I**J&DN];@@VZ*''G^DV] C%&Y8AY7,@@MQU
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6173
P]8QY6@@@MSPE''XP@@@@@CL0!!''X@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 64 0 77 242 77 0 128 0 0 160 32 8 215 50 50 173 50 45 210 45 0 32 0 40 247 40 77 242 118 0 64 32 22 105 22 18 141 18 13 178 13 45 210 86]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6174
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6175
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6176
greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6177
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6178
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6179
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6180
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6181
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6182
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6183
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6184
     self greenThumbUpSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6185
     ImageEditor openOnClass:self andSelector:#greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6186
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6187
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6188
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6189
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6190
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6191
    ^Icon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6192
        constantNamed:'SystemBrowser class greenThumbUpSmallIcon'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6193
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@P@@@@D@@@@A@@L@@P@B@@U*@@@UZ@@@UV @@EV @@@@@@B@@@@B@b') ; colorMapFromArray:#[0 0 0 0 255 0 0 127 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C@@N@@8@C @_8A?0O?@?8C?@O8@@@@@a') ; yourself); yourself]
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6194
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6195
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6196
greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6197
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6198
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6199
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6200
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6201
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6202
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6203
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6204
     self greyThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6205
     ImageEditor openOnClass:self andSelector:#greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6206
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6207
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6208
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6209
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6210
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6211
    ^Icon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6212
        constantNamed:'SystemBrowser class greyThumbUpIcon'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6213
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6214
@@@@@@@@@@ @@4\@@@@@@@@GE@@@@@@@@@\W@@@@@@@@A4@@@@@@@@@4P@@@@@@H@4E2]FAV]0AAEF\SH7X3@DDQPSHC]2@@]ADWI#H#\0@7]7LBM7H@@FY7
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6215
YVL"M3@@@FY T7L @@@@@BH T7L@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 224 224 224 64 64 64 128 128 128 192 192 192 32 32 32 96 96 96 160 160 160]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6216
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6217
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6218
hideToolBarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6219
    <resource: #programImage>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6220
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6221
    ^ self hideToolbar8x24Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6222
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6223
    "Created: / 18-02-2007 / 14:52:15 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6224
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6225
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6226
hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6227
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6228
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6229
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6230
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6231
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6232
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6233
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6234
     self hideToolbar24x8Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6235
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6236
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6237
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6238
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6239
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6240
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6241
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6242
        constantNamed:#'GenericToolbarIconLibrary class hideToolbar24x8Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6243
        ifAbsentPut:[(Depth2Image new) width: 24; height: 8; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@J@B(@* @HPB%@"D@AP@U@ET@@@@@ @J@@B$@*PH)@BT@IPA%@@T@AP@E') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 24; height: 8; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@XFA TEAPLC@0@@@@A XFAPTE@0LC') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6244
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6245
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6246
hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6247
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6248
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6249
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6250
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6251
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6252
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6253
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6254
     self hideToolbar8x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6255
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6256
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6257
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6258
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6259
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6260
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6261
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6262
        constantNamed:#'GenericToolbarIconLibrary class hideToolbar8x24Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6263
        ifAbsentPut:[(Depth2Image new) width: 8; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@(@BD@AP@@@@@)@BT(AR$@JP@%J@T)@BT(JR$!!IPTEJB )HRT%AR$@IR EJP@%') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 8; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@FAPL@@FAPL@XE@0@@XE@0A TC@@A TC') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6264
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6266
hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6267
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6268
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6269
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6270
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6271
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6272
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6273
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6274
     self hideToolbarIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6275
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6276
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6277
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6278
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6279
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6280
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6281
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6282
        ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6283
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6284
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6285
hideToolbarIcon10x26
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6286
    "This resource specification was automatically generated
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6287
     by the ImageEditor of ST/X."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6288
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6289
    "Do not manually edit this!! If it is corrupted,
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6290
     the ImageEditor may not be able to read the specification."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6291
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6292
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6293
     self hideToolbarIcon inspect
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6294
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6295
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6296
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6297
    <resource: #image>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6298
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6299
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6300
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon10x26'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6301
        ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6302
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6303
    "Created: / 18-02-2007 / 14:52:07 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6304
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  6305
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6306
hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6307
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6308
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6309
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6310
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6311
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6312
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6313
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6314
     self hideToolbarIconH14 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6315
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6316
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6318
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6319
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6320
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6321
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH14'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6322
        ifAbsentPut:[(Depth2Image new) width: 10; height: 14; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 14; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6323
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6324
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6325
hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6326
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6327
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6328
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6329
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6330
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6331
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6332
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6333
     self hideToolbarIconH20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6334
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6335
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6336
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6337
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6338
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6339
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6340
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH20'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6341
        ifAbsentPut:[(Depth2Image new) width: 10; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6342
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6343
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6344
hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6345
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6346
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6347
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6348
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6349
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6350
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6351
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6352
     self hideToolbarIconH26 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6353
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6354
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6355
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6356
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6357
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6358
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6359
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH26'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6360
        ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6361
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6362
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6363
languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6364
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6365
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6366
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6367
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6368
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6369
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6370
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6371
     self languages20x12Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6372
     ImageEditor openOnClass:self andSelector:#languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6373
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6374
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6375
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6376
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6377
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6378
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6379
        constantNamed:'GenericToolbarIconLibrary class languages20x12Icon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6380
        ifAbsentPut:[(Depth8Image new) width: 20; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6381
L0X3IRT%IRT3A X3IRT%IRT3L0XLL0XFL2T%ISLFA#L%IRT%L20FA2T%L3LFL2T%L0XFL2T%L3LFA0\GIRT%CCLFA 03A X3CCLFA \GA0\3L3L3L3L3L3LF
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6382
A#L3L3LFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA X3L3L3L3L3L3LFA XFA XFA XFA"T%ISLFA @JB (JB (JB (JB (J
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6383
ISLFA#LJB (JB (JB (JB (JB (3A"0JB (JB (JB (JB (JB (JB XJB (JB (JB (JB (JB (JB (J') ; colorMapFromArray:#[168 208 173 255 223 137 255 226 146 255 228 151 255 230 164 168 107 144 255 0 0 0 0 0 226 232 173 255 224 143 255 204 0 255 229 162 167 167 205 137 185 173 70 78 154 255 225 143 255 227 151 255 232 163 137 78 144 70 107 158 70 78 148 255 224 142 255 226 149 255 229 159 255 232 173 255 255 238 198 232 173 255 224 141 255 227 150 255 228 157 255 232 171 70 133 163 70 78 146 255 224 140 255 226 147 255 228 155 255 231 168 0 0 99 70 78 145 255 223 138 255 227 148 255 227 153 255 232 168 226 159 148 255 63 63 70 78 144 255 224 139 255 225 145 255 228 152 255 231 166 198 133 144 255 255 255]; yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6384
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6385
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6386
loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6387
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6388
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6389
    ^ self load22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6390
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6391
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6392
loadImageFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6393
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6394
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6395
    ^ self loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6396
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6397
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6398
redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6399
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6400
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6401
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6402
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6403
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6404
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6405
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6406
     self redThumbDownIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6407
     ImageEditor openOnClass:self andSelector:#redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6408
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6409
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6410
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6411
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6412
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6413
    ^Icon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6414
        constantNamed:#'SystemBrowser class redThumbDownIcon'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6415
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6416
@@@@@@@@@@@@@L3@!!;\@@@C6<J^7(@@H=-5*<Z);\@@]UUDJ^;(@@MH3N:<Z);\@H3MC^ F;(@@#MO$7);8WB@\#'')K0#;,@@AH @@@@@@@@B2@@@@@@@@@K
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6417
NP@@@@@L@@,4@@@@@@T@A2$@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 191 20 1 255 44 33 255 131 65 255 84 65 255 88 33 160 40 0 184 67 40 32 27 0 223 99 33 64 22 0 223 52 33 128 13 0 224 56 0 112 16 31 152 35 8]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@?>O?8??3??O?>??;??/?>_?0<@C8@O @>@A0@') ; yourself); yourself]
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6418
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6419
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6420
redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6421
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6422
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6423
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6424
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6425
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6426
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6427
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6428
     self redThumbDownSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6429
     ImageEditor openOnClass:self andSelector:#redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6430
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6431
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6432
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6433
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6434
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6435
    ^Icon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6436
        constantNamed:#'SystemBrowser class redThumbDownSmallIcon'
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6437
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B@@@@@@EV @@AUZ@@@EV C@@U*@@@A@@@@@P@@@@D@@@@A@@@@@@@@ b') ; colorMapFromArray:#[0 0 0 255 0 0 127 0 0 255 255 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@? C?@O>@?<A?0G>@N@@8@C @L@@@a') ; yourself); yourself]
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6438
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6439
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6440
redoIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6441
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6442
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6443
    View styleSheet name = #winXP ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6444
	^ self redoXP28x28Icon
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6445
    ].
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6446
    ^ self redo20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6447
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6448
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6449
saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6450
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6451
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6452
    ^ self save22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6453
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6454
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6455
saveToFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6456
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6457
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6458
    ^ self save22x22Icon
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6459
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6460
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6461
smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6462
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6463
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6464
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6465
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6466
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6467
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6468
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6469
     self smallBugIcon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6470
     ImageEditor openOnClass:self andSelector:#smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6471
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6472
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6473
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6474
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6475
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6476
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6477
	constantNamed:#'GenericToolbarIconLibrary class smallBugIcon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6478
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6479
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@3@@@@@@@@@@@3LS@@@@@@@@@@LSL2@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6480
@@@@@@@3LSL @@@@@@@@D3L2@@@@@@@@@CLSH @@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6481
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6482
@@@@@@@@@@@@@@@@@@#@@B_ @A? @O?@@C?@@G?@@G> @G>@@C=@@A4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6483
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6484
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6485
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6486
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6487
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6488
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6489
smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6490
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6491
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6492
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6493
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6494
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6495
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6496
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6497
     self smiley_veryAngry inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6498
     ImageEditor openOnClass:self andSelector:#smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6499
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6500
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6501
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6502
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6503
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6504
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6505
	constantNamed:#'GenericToolbarIconLibrary class smiley_veryAngry'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6506
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6507
3L3L3L3L3L3K/L2;.;3L.<,[.9X36;,[27(&H$QM6''/K(+IDQDR=*<V3HDQDPD6526I@ADP@SZ/KL  @P@ M><,4BHQD"@7;22Q@ADP@S_/K5DQDQDS-*<2=
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6508
Q@@@AM6<3K7PQDS 6+3L2=7]7]6+3L3L.???*;3L3L3L.;.<3L0b') ; colorMapFromArray:#[0 0 0 254 42 0 255 253 19 255 254 147 255 234 0 150 150 150 255 255 199 254 109 3 255 0 0 255 255 235 254 157 0 69 69 69 248 244 251 255 201 0 255 229 0 255 180 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A#87??_?=??7??_?=??7??_?=??3?>O?8_?@?8@>@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6509
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6510
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6511
!GenericToolbarIconLibrary class methodsFor:'image specs-tools'!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6512
3075
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6513
addBufferIcon
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6514
    <resource: #programImage>
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6515
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6516
    ^ self addBuffer16x16Icon2
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6517
!
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  6518
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6519
browseItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6520
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6521
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6522
    ^ self browseIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6523
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6524
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6525
bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6526
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6527
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6528
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6529
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6530
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6531
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6532
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6533
     self bug2_25x25Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6534
     ImageEditor openOnClass:self andSelector:#bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6535
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6536
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6537
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6538
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6539
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6540
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6541
        constantNamed:#'GenericToolbarIconLibrary class bug2_25x25Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6542
        ifAbsentPut:[(Depth4Image new) width: 25; height: 25; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6543
@@@@@@@@@@@@@@@@O0@@@@@@@@@@@AV( @@@@@@CL3 P@3D@DU @@@@@@@DX(@@P@QAX@@@@@@@Z"!!ATQIDET@ @@@@@B@(XQ7Q%UP@@@@@@B@VHBWH''QE@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6544
@@@@@@APAFABH''R@@C@@@H E@DQDABI4 @@A@@D@)$Q7]*AGPH@@@@@EDVQGH$Q4Y!!D@@0,@ AYD\"QBI4@XB@@H@ETTQ2IDH"]A(AT@BCMP!!GH$P"H''XX"@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6545
@@@ATAP"QRH"]@DQB@@@@@@TIDH"H''P@TX@@@@@@"4P"H"]@F@@@@@D@@@"WH"I4@P@@@@@@@@@@"4QDP@D@@@@@C0@@@@!!UEUTH@@@@@@@@@@@@@@@UB@@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6546
@@@C@@@@@@@QTH@@@@@@A0@@@@@A @@@@@@@@@L@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@P@a') ; colorMapFromArray:#[0 0 0 148 148 148 248 0 0 255 255 255 108 0 0 110 110 110 52 0 0 209 0 0 208 208 208 100 72 72 44 44 44 152 49 49]; mask:((ImageMask new) width: 25; height: 25; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O @@FG<@@G#?@@C;? @@7?0@@\?8@@C?>@@M?? @G??8@A??<@@???P@O??<@B??>@A/?? @C??8@@??0@@G?0@@@?<@@@G?@@@@C0@@@C(@@@A
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6547
@@@@@@@@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6548
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6549
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6550
bugIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6551
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6552
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6553
    ^ self bug28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6554
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6555
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6556
copyIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6557
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6558
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6559
    ^ self copy20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6560
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6561
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6562
cutIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6563
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6564
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6565
    ^ self cut20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6566
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6567
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6568
debugItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6569
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6570
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6571
    ^ self debugIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6572
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6573
    "Created: / 20-02-2007 / 15:46:24 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6574
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6575
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6576
deleteIcon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6577
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6578
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6579
    ^ self delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6580
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  6581
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6582
doItIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6583
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6584
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6585
    ^ self doIt20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6586
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6587
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6588
downIcon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6589
    ^ self down22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6590
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6591
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6592
downRightIcon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6593
    ^ self downRight22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6594
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6595
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6596
inspectItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6597
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6598
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6599
    ^ self inspectIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6600
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6601
    "Created: / 20-02-2007 / 15:44:34 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6602
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  6603
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6604
leftDownIcon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6605
    ^ self leftDown22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6606
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6607
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6608
printItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6609
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6610
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6611
    ^ self printIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6612
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  6613
3558
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6614
removeTabEnteredIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6615
    <resource: #programImage>
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6616
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6617
    ^ self removeTabIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6618
!
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  6619
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6620
removeTabIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6621
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6622
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6623
    ^ self removeTab22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6624
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6625
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6626
undoIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6627
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6628
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6629
    ^ self undo16x16Icon2
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6630
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6631
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6632
upIcon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6633
    ^ self up22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6634
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6635
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6636
upRightIcon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  6637
    ^ self upRight22x22Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6638
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6639
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6640
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser'!
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6641
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6642
changesBrowserIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6643
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6644
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6645
    ^ self changesBrowser24x24Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6646
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6647
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6648
copyFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6649
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6650
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6651
    ^ self copy20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6652
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6653
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6654
cutFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6655
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6656
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6657
    ^ self cut20x20Icon2
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6658
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6659
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6660
deleteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6661
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6662
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6663
    ^ self erase20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6664
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6665
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6666
desktopIcon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6667
    <resource: #programImage>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6668
3696
5a6e79b27976 desktopicon
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  6669
    "/ ^ self desktop28x28Icon
3865
489db7d50e1e desktop icon
Claus Gittinger <cg@exept.de>
parents: 3860
diff changeset
  6670
    ^ self desktop24x24Icon
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6671
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6672
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6673
diffIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6674
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6675
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6676
    ^ self diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6677
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6678
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6679
directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6680
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6681
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6682
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6683
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6684
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6685
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6686
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6687
     self directoryBookmarks20x20Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6688
     ImageEditor openOnClass:self andSelector:#directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6689
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6690
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6691
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6692
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6693
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6694
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6695
	constantNamed:#'GenericToolbarIconLibrary class directoryBookmarks20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6696
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6697
@@@@@@@@@@@@@@@@@@@@@@@@@@@@X&I"X&I"X&I"X&I"X&I"X&I"X A"X&I"X&I"X&I"B0,KB0,KB6I"@FI"X&I"X&I"X&HKW5=_W5<KX&H@X&H@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6698
X -_W5=_W0-"X A"X A#X6M#X0A"B5=_W5=_B6I"@FH@X6M#X6M#X0@KW5=_W5<KX&H@@@@@@@@@@@@@@@-_W5=_W0,@@@@@X6M#X6M#X6M#B5=_W5=_B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6699
@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5=_W5=_B6L@@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6700
X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5< B1=_B6L@@@A#X6M#X6M#X6LKW0-#B5<KX0@@@FM#X6M#X6M#X0,KX6M#B0-#@@@@X6M#X6M#X6M#B6M#X6M#B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6701
@@A#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 71 169 0 71 170 0 74 172 0 78 174 0 83 177 0 100 189 0 106 193 0 107 193 0 112 196 0 118 201 0 122 205 0 128 208 0 128 209 0 132 212 0 133 212 0 137 215 0 138 215 0 141 218 0 144 220 18 78 164 19 80 169 19 81 168 20 79 165 22 138 207 23 81 167 23 91 173 23 138 207 26 92 173 39 141 229 41 141 229 42 134 204 43 135 204 43 142 209 48 144 209 51 192 255 59 166 231 59 195 255 61 166 231 61 166 232 66 198 255 72 171 234 73 200 255 74 172 234 75 172 234 82 204 255 84 176 236 87 177 237 88 178 238 89 207 255 97 209 255 98 182 239 100 182 239 101 183 240 104 213 255 109 187 241 111 156 203 112 216 255 113 188 243 121 191 244 121 221 255 123 193 245 125 194 245 126 221 255 131 196 246 135 197 247 136 198 248 136 226 255 140 200 248 140 228 255 144 202 250 146 203 250 148 203 250 149 232 255 150 233 255 151 189 220 153 205 252 153 206 252 154 207 252 156 194 223 159 209 253 160 237 255 162 209 253 163 238 255 168 241 255 173 243 255 174 243 255 181 201 223 182 206 226 183 248 255 186 249 255 191 251 255 195 252 255 201 220 238 201 255 255 202 216 231 210 226 242 211 229 247 255 0 0 226 226 111]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@A?@@A?@G=?@G=?@O??@_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6702
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6703
3078
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6704
directoryBookmarksIcon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6705
    <resource: #programImage>
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6706
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6707
    ^ self directoryBookmarks20x20Icon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6708
!
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  6709
3063
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6710
directoryUpIcon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6711
    <resource: #programImage>
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6712
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6713
    ^ self upArrow20x20Icon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6714
!
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  6715
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6716
dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6717
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6718
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6719
    ^ self dosWithoutText20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6720
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6721
3625
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6722
editApplicationIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6723
    <resource: #programImage>
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6724
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6725
    ^ self editIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6726
!
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  6727
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6728
editFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6729
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6730
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6731
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6732
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6733
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6734
editIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6735
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6736
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6737
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6738
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6739
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6740
encodingLockIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6741
    <resource: #programImage>
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6742
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6743
    ^ self padLockRedMiniIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6744
!
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  6745
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6746
fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6747
    "This resource specification was automatically generated
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6748
     by the ImageEditor of ST/X."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6749
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6750
    "Do not manually edit this!! If it is corrupted,
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6751
     the ImageEditor may not be able to read the specification."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6752
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6753
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6754
     self fileContents14x17Icon inspect
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6755
     ImageEditor openOnClass:self andSelector:#fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6756
     Icon flushCachedIcons
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6757
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6758
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6759
    <resource: #image>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6760
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6761
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6762
	constantNamed:'GenericToolbarIconLibrary class fileContents14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6763
	ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6764
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6765
APTEAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@T@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@AP@@@@T@@@@EAP@@@@@EAPTEAPTEAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6766
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6767
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6768
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6769
fileContentsIcon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6770
    <resource: #programImage>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6771
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6772
    ^ self fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6773
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  6774
3098
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6775
fileInIcon
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6776
    <resource: #programImage>
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6777
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6778
    ^ self fileIn20x20Icon3
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6779
!
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  6780
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6781
fitImageSizeToViewIcon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6782
    <resource: #programImage>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6783
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6784
    ^ self fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6785
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6786
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6787
hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6788
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6789
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6790
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6791
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6792
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6793
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6794
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6795
     self hexToggle14x17Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6796
     ImageEditor openOnClass:self andSelector:#hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6797
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6798
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6799
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6800
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6801
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6802
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6803
	constantNamed:#'GenericToolbarIconLibrary class hexToggle14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6804
	ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6805
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAP@E@@TEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPT@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6806
AP@EAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@T@AP@E@@T@APT@@@@@AP@@@@T@@@@EAP@@@@@E@@T@AP@E@@TE
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6807
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6808
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6809
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6810
hexToggleIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6811
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6812
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6813
    ^ self hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6814
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6815
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6816
historyBackIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6817
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6818
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6819
    ^ self leftArrow20x20Icon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6820
!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6821
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6822
historyForwardIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6823
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6824
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6825
    ^ self rightArrow20x20Icon
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6826
!
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6827
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6828
historyIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6829
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6830
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6831
    ^ self history20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6832
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6833
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6834
homeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6835
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6836
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6837
    ^ self home28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6838
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6839
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6840
homeIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6841
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6842
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6843
    ^ self home22x22Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6844
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6845
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6846
makeIcon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6847
    <resource: #programImage>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6848
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6849
    ^ self make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6850
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6851
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6852
newDirectoryIcon
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6853
    <resource: #programImage>
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6854
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  6855
    ^ self newDirectory20x20Icon
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  6856
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  6857
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6858
pasteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6859
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6860
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6861
    ^ self paste20x20Icon
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6862
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6863
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6864
printerIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6865
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6866
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6867
    ^ self printer22x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6868
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6869
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6870
reloadIcon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6871
    <resource: #programImage>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6872
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6873
    ^ self reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6874
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6875
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6876
reloadTextFromFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6877
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6878
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6879
    ^ self reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6880
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6881
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6882
saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6883
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6884
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6885
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6886
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6887
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6888
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6889
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6890
     self saveAsToFile32x22Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6891
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6892
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6893
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6894
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6895
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6896
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6897
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6898
        constantNamed:#'GenericToolbarIconLibrary class saveAsToFile32x22Icon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6899
        ifAbsentPut:[(Depth4Image new) width: 32; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6900
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6901
UUTA@@@@@CL3L3L"H"H"DEUU@P@@@@@4QCQDL"H"H"@@@@D@@@@@L3L3L2H"H"HQDQDQ@@@@@CQDMDP0@@H DP@@@P@@@@@3L3L3L@@B@AD@UPD@@@@@MDP4
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6902
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6903
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 32; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@C''RX\9BT)IPL%K"S@)L $I13FG\@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6904
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6905
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6906
saveImageToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6907
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6908
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6909
    ^ self saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6910
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6911
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6912
saveTextToFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6913
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6914
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6915
    ^ self saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6916
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6917
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6918
searchFileIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6919
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6920
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6921
    ^ self search20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6922
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6923
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6924
searchIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6925
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6926
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  6927
    ^ self search20x20Icon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6928
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6929
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6930
shellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6931
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6932
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6933
    OperatingSystem isMSDOSlike ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6934
	^ self dosShellTerminalIcon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6935
    ].
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6936
    ^ self unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6937
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6938
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6939
stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6940
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6941
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6942
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6943
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6944
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6945
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6946
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6947
     self stxHomeIcon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6948
     ImageEditor openOnClass:self andSelector:#stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6949
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6950
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6951
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6952
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6953
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6954
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6955
        constantNamed:#'GenericToolbarIconLibrary class stxHomeIcon'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  6956
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6957
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQICP!!DP@@@@@@DQICL4HQD@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6958
DQICL3MBDQ@@@@DQIFX3L3P!!DP@@DQICY#L3L6HQD@D"ICM&L3M&M@@A@RH$L3Y#M&L4@@D@@@P3L6L6L3P@@@@@ACL3Y&L3M@@@@@@DL3L6L3L4@@@@@@P3
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6959
L6X3L3P@@@@@ACL6L6L3M@@@@@@DM&L3M#L4@@@@@@Q&L3L3X3P@@@@@A&YDQDQ$Q@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192 100 128 255 0 200 48]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6960
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6961
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6962
unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6963
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6964
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  6965
    ^ self shellWithoutText20x20Icon
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6966
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6967
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6968
viewDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6969
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6970
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6971
    ^ self viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6972
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6973
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6974
viewNoDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6975
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6976
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  6977
    ^ self viewNoDetails16x16Icon
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6978
! !
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  6979
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6980
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ImageEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6981
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6982
loadImageFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6983
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6984
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6985
    ^ self loadFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6986
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6987
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6988
newImageIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6989
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6990
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6991
    ^ self newImage24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6992
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  6993
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6994
saveImageAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6995
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6996
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6997
    ^ self saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6998
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6999
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7000
saveImageAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7001
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7002
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7003
    ^ self saveAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7004
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7005
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7006
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-Launcher'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7007
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7008
displayScreenIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7009
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7010
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7011
    ^ self displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7012
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7013
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7014
editorIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7015
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7016
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7017
    ^ self editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7018
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7019
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7020
fontIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7021
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7022
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7023
    ^ self font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7024
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7025
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7026
garbageCollectIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7027
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7028
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7029
    ^ self garbageCollect24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7030
    "/ ^ self garbageCollect28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7031
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7032
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7033
helpIcon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7034
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7035
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7036
    ^ self help28x28Icon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7037
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7038
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7039
helpIcon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7040
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7041
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7042
    ^ self help28x28Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7043
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7044
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7045
helpIcon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7046
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7047
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7048
    ^ self help28x28Icon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7049
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7050
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7051
keyboardMappingIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7052
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7053
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7054
    ^ self keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7055
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7056
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7057
languagesIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7058
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7059
3719
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  7060
    "/ ^ self languages20x12Icon
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  7061
    ^ self languages22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7062
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7063
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7064
memoryIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7065
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7066
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7067
    ^ self memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7068
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7069
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7070
projectBuilderIcon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7071
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7072
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7073
    ^ self packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7074
!
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7075
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7076
saveImageIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7077
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7078
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7079
    ^ self saveImage24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7080
    "/ ^ self saveImage28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7081
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7082
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7083
startChangesBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7084
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7085
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7086
    ^ self changesBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7087
    "/ ^ self changesBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7088
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7089
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7090
startFileBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7091
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7092
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7093
    ^ self fileBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7094
    "/ ^ self fileBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7095
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7096
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7097
startImageEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7098
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7099
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7100
    ^ self imageEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7101
    "/ ^ self imageEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7102
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7103
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7104
startMenuEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7105
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7106
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7107
    ^ self menuEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7108
    "/ ^ self menuEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7109
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7110
3092
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7111
startNewFileBrowserIcon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7112
    <resource: #programImage>
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7113
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7114
    ^ self newFileBrowser24x24Icon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7115
!
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  7116
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7117
startNewSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7118
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7119
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7120
    ^ self newSystemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7121
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7122
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7123
startSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7124
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7125
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7126
    ^ self systemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7127
"/    ^ SystemBrowser defaultIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7128
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7129
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7130
startSystemBrowserOnHistoryClassIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7131
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7132
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7133
    ^ self systemBrowserClassHistory28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7134
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7135
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7136
startUIPainterIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7137
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7138
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7139
    ^ self uiPainter24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7140
    "/ ^ self uiPainter28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7141
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7142
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7143
startWorkspaceIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7144
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7145
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7146
    ^ self workspace24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7147
    "/ ^ self workspace28x28Icon
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7148
!
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7149
3171
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7150
stxHelpIcon
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7151
    <resource: #programImage>
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7152
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7153
    ^ self helpIcon2
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7154
!
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  7155
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7156
stxSettings24x24Icon
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7157
    <resource: #programImage>
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7158
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  7159
    ^ self stxSettings24x24Icon1
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7160
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7161
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7162
stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7163
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7164
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7165
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7166
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7167
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7168
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7169
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7170
     self stxSettings24x24Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7171
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7172
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7173
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7174
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7175
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7176
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7177
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7178
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7179
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7180
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@@@@@@@@@@@@@GA0@@@@@@@@@@@EAWA0BH"H"H"H"H@EAP@@BH"I*H"H"H@EAP@@BH"I&H"H
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7181
"X@EAP@@BH"I&H"H&H@EAP@@BH"H&("I"H@EAP@@BH"H"X"X"H@EAP@@BH"H"Z&H"H@EAP@@BH"H"I"H"H@E@C]0BH"H"Y"H"H@E@@@@BH"H&H&H"H@EAP\@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7182
BH")"H"("H@EAP\@BH*X"H"("H@EAP\@BI&H"H"I"H@E@CM0BH"H"H"H"H@E@C]0@@@@@@@@@@@E@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7183
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100 25 25 25 0 204 51 0 168 39]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7184
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7185
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7186
stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7187
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7188
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7189
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7190
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7191
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7192
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7193
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7194
     self stxSettings24x24Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7195
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7196
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7197
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7198
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7199
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7200
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7201
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7202
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7203
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7204
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EAP@@@@@@@@@@@@@EAPB;.;.;.;.;,FA%APB;.;.;.;.;,FA @@B;.1F;.;.;,FA @@B;.1F;.;
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7205
,[,FA @@B;.1F;.;F;,FA @@B;.;D[.1.;,FA @@B;.;,[,[.;,FA @@B;.;,QF;.;,FA @@B;.;.1.;.;,F@IUPB;.;,Q.;.;,F@@@@B;.;F;F;.;,FA T@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7206
B;,Q.;,[.;,FA T@B;D[.;,[.;,FA T@B1F;.;.1.;,F@I%PB;.;.;.;.;,F@IUPB;.;.;.;.;,F@IUP@@@@@@@@@@@@@IUP@@@@@@@@@@@@@I%P@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7207
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 127 0 168 39 0 204 51 25 25 25 100 100 100 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255 184 231 231]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
3567
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7208
!
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7209
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7210
systemBrowserIcon
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7211
    <resource: #programImage>
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7212
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  7213
    ^ self systemBrowser24x24Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7214
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7215
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7216
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-MenuEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7217
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7218
copyMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7219
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7220
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7221
    ^ self copyMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7222
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7223
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7224
cutMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7225
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7226
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7227
    ^ self cutMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7228
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7229
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7230
newMenuIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7231
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7232
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7233
    ^ self newMenu24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7234
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7235
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7236
pasteMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7237
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7238
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7239
    ^ self pasteMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7240
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7241
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7242
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser'!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7243
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7244
addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7245
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7246
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7247
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7248
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7249
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7250
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7251
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7252
     self addBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7253
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7254
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7255
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7256
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7257
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7258
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7259
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  7260
        constantNamed:#'GenericToolbarIconLibrary class addBreakPointIcon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  7261
        ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>****') ; colorMapFromArray:#[255 0 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7262
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7263
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7264
addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7265
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7266
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7267
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7268
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7269
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7270
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7271
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7272
     self addBuffer13x11Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7273
     ImageEditor openOnClass:self andSelector:#addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7274
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7275
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7276
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7277
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7278
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7279
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7280
	constantNamed:#'GenericToolbarIconLibrary class addBuffer13x11Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7281
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.; @N???/??8@C.;.;.;.@@Y&Y&Y&XP@FY&Y&Y&D@A&Y&Y&Y!!@@Y&Y&Y&XP@FY&Y&Y&D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7282
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7283
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7284
addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7285
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7286
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7287
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7288
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7289
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7290
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7291
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7292
     self addBuffer16x16Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7293
     ImageEditor openOnClass:self andSelector:#addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7294
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7295
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7296
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7297
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7298
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7299
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7300
	constantNamed:#'GenericToolbarIconLibrary class addBuffer16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7301
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7302
@@@@@@@@@@@ADQDPDQDQ@@D3L>@SL38@@SL38AL3O @@@@@@@@@@@@L3L3L3L3L@@3L3L3L3L0@CL3L6L3X3A L3L3M#M#M @3L3L3X6M @@@@@@@FY @@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7303
@@Y&Y&Y&@@@@@@Y&Y&@@@@@@A Y&@@@@@@A Y&A @@@@A @F@@Xb') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 192 192 192 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??;??/?>??;??/?>??;????>??;?? G?@C @U@BR@QDb') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7304
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7305
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7306
padLockBlackMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7307
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7308
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7309
    ^ self padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7310
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7311
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7312
padLockBlueMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7313
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7314
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7315
    ^ self padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7316
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7317
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7318
padLockGrayMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7319
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7320
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7321
    ^ self padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7322
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7323
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7324
padLockGreenMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7325
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7326
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7327
    ^ self padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7328
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7329
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7330
padLockRedMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7331
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7332
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7333
    ^ self padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7334
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  7335
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7336
removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7337
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7338
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7339
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7340
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7341
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7342
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7343
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7344
     self removeBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7345
     ImageEditor openOnClass:self andSelector:#removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7346
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7347
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7348
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7349
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7350
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7351
    ^Icon
3794
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  7352
        constantNamed:#'GenericToolbarIconLibrary class removeBreakPointIcon2'
f3c85cd5701f image resource method fixes (key must be name of method)
Claus Gittinger <cg@exept.de>
parents: 3722
diff changeset
  7353
        ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>****') ; colorMapFromArray:#[0 255 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7354
! !
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7355
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7356
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-classIcons'!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7357
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7358
applicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7359
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7360
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7361
    ^ self smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7362
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7363
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7364
autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7365
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7366
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7367
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7368
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7369
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7370
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7371
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7372
     self autoloadedClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7373
     ImageEditor openOnClass:self andSelector:#autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7374
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7375
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7376
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7377
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7378
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7379
    ^Icon
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  7380
        constantNamed:'GenericToolbarIconLibrary class autoloadedClassBrowserIcon'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  7381
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@DBH"HA@@@A@"H"@P@@@PH"H D@@@DP@@@A@@@ADQDQDP@@@Q@@@@D@@@DP@BHA@@@@D@@"@P@@@@@@@@@@@b') ; colorMapFromArray:#[127 127 127 192 192 192 224 224 224]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?A?<G?0_?A?<G?0_?A?<G?0_?@?<@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7382
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7383
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7384
containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7385
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7386
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7387
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7388
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7389
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7390
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7391
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7392
     self containerClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7393
     ImageEditor openOnClass:self andSelector:#containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7394
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7395
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7396
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7397
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7398
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7399
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7400
	constantNamed:#'GenericToolbarIconLibrary class containerClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7401
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'B;.0@K.;@@.;,@B;.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;.0@K.;@@.;,@B;.0@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'^OA8<F@0XCA LF@0XCA LF@0^OA8<@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7402
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7403
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7404
enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7405
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7406
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7407
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7408
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7409
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7410
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7411
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7412
     self enumTypeBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7413
     ImageEditor openOnClass:self andSelector:#enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7414
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7415
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7416
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7417
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7418
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7419
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7420
	constantNamed:#'GenericToolbarIconLibrary class enumTypeBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7421
	ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'(@@@NJ@@@C" @@@@(@@@@J(@J BB@B@@  @ NJ@@@@B @@@@(@@@@J@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F60[[@@@@@@@@@@@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7422
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7423
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7424
errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7425
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7426
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7427
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7428
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7429
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7430
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7431
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7432
     self errorClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7433
     ImageEditor openOnClass:self andSelector:#errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7434
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7435
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7436
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7437
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7438
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7439
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7440
	constantNamed:#'GenericToolbarIconLibrary class errorClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7441
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7442
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7443
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7444
exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7445
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7446
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7447
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7448
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7449
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7450
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7451
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7452
     self exceptionClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7453
     ImageEditor openOnClass:self andSelector:#exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7454
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7455
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7456
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7457
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7458
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7459
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7460
	constantNamed:#'GenericToolbarIconLibrary class exceptionClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7461
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 110 110 110]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7462
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7463
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7464
guiApplicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7465
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7466
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7467
    ^ self smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7468
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7469
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7470
libraryDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7471
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7472
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7473
    ^ self smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7474
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7475
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7476
nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7477
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7478
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7479
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7480
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7481
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7482
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7483
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7484
     self nameSpaceBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7485
     ImageEditor openOnClass:self andSelector:#nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7486
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7487
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7488
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7489
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7490
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7491
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7492
	constantNamed:#'GenericToolbarIconLibrary class nameSpaceBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7493
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@AO8C?DS:"?1D:(/<QN*J?DS*"/1D:(+<QN*J/DR*"+1AJ(*!!@DJJA@@T@E@@@UT@@@a') ; colorMapFromArray:#[0 0 0 190 190 0 194 194 194 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G#1??7??_?=??7??_?=??7??O?8_?@?8@>@b') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7494
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7495
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7496
notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7497
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7498
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7499
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7500
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7501
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7502
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7503
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7504
     self notificationClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7505
     ImageEditor openOnClass:self andSelector:#notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7506
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7507
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7508
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7509
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7510
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7511
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7512
	constantNamed:#'GenericToolbarIconLibrary class notificationClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7513
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 127 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7514
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7515
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7516
queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7517
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7518
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7519
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7520
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7521
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7522
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7523
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7524
     self queryClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7525
     ImageEditor openOnClass:self andSelector:#queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7526
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7527
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7528
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7529
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7530
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7531
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7532
	constantNamed:#'GenericToolbarIconLibrary class queryClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7533
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 61 173 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7534
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7535
3947
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7536
rubyClassBrowserIcon
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7537
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7538
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7539
    "
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7540
     self rubyClassBrowserIcon inspect
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7541
     ImageEditor openOnClass:self andSelector:#rubyClassBrowserIcon
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7542
     Icon flushCachedIcons
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7543
    "
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7544
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7545
    <resource: #image>
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7546
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7547
    ^Icon
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7548
        constantNamed:'GenericToolbarIconLibrary rubyClassBrowserIcon'
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7549
        ifAbsentPut:[(Depth8Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7550
ZF!!(ZF!!"WE5^MA$ ZF!!(ZF!!YOT]HYTL&HV!!(ZF!!TL3,<S%UJJA=(ZF!!XLCH3N6D/J1\CZF!!(H"P0LU)$EATP@V!!(X@@]IE-WT 8G@ %(ZFYPQ%=EO38#A@X*
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7551
ZF!!VY6MBD00QF@ ^PV!!(M4=QKQHMAP<%GD-(ZCT6PA,KB"1ISC%DZF!!(JR8VF"\8N$5SZF @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[133 13 2 139 9 4 138 12 5 137 12 6 136 15 7 140 13 5 142 13 5 143 14 4 141 15 6 151 0 0 145 12 3 148 12 0 149 12 2 149 12 3 151 13 2 149 11 5 145 13 4 153 13 1 154 12 1 156 12 1 158 12 0 159 13 1 156 12 3 153 13 4 153 14 4 152 15 6 154 14 6 159 12 6 138 17 3 143 16 1 140 16 4 128 18 11 143 21 11 138 20 13 144 17 2 150 16 5 158 20 1 152 16 7 154 17 10 155 18 10 155 20 11 147 26 15 160 4 3 162 14 2 162 14 7 162 11 8 162 11 10 167 17 3 165 21 1 168 20 1 169 20 1 172 20 1 175 17 5 160 17 8 160 18 10 165 17 10 162 22 10 166 24 10 175 25 14 176 19 1 180 19 1 181 20 2 180 20 7 181 21 8 179 19 12 184 18 11 170 25 21 166 33 23 189 35 18 187 37 24 154 54 44 192 23 3 203 27 4 192 22 15 194 31 13 193 29 19 203 29 21 193 35 20 197 44 25 198 48 29 200 49 30 219 54 30 206 63 41 211 52 35 188 72 57 206 64 45 199 69 56 211 84 63 190 96 84 202 97 85 201 99 85 197 102 88 221 105 90 228 109 93 216 113 104 203 133 125 222 131 119 215 135 127 228 156 148 239 167 147 231 175 163 240 193 188 241 201 196 248 208 200 0 0 0]; mask:((ImageMask new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A?@O<A?0O?@?<G?0_?A?<G?0_?@?8@@a') ; yourself); yourself]
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7552
!
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  7553
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7554
smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7555
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7556
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7557
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7558
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7559
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7560
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7561
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7562
     self smallGrayPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7563
     ImageEditor openOnClass:self andSelector:#smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7564
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7565
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7566
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7567
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7568
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7569
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7570
        constantNamed:'GenericToolbarIconLibrary class smallGrayPackageIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7571
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 153 153 153]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7572
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7573
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7574
smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7575
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7576
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7577
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7578
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7579
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7580
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7581
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7582
     self smallGreenPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7583
     ImageEditor openOnClass:self andSelector:#smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7584
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7585
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7586
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7587
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7588
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7589
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7590
        constantNamed:'GenericToolbarIconLibrary class smallGreenPackageIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7591
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@BH @@H"@@H H @"@ @BH@H"H@H@@BH"H"H"@@@@D!!DPH@@@@@H@@P@@@@DRDPD@@@@AD!!DA@@@@@QHQ@P@@@@DRDP@@@@@@@ @@@@@b') ; colorMapFromArray:#[0 0 0 0 255 0 132 0 132]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7592
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7593
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7594
smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7595
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7596
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7597
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7598
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7599
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7600
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7601
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7602
     self smallOrangePackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7603
     ImageEditor openOnClass:self andSelector:#smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7604
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7605
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7606
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7607
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7608
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7609
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7610
        constantNamed:'GenericToolbarIconLibrary class smallOrangePackageIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7611
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 255 139 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7612
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7613
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7614
smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7615
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7616
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7617
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7618
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7619
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7620
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7621
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7622
     self smallYellowPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7623
     ImageEditor openOnClass:self andSelector:#smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7624
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7625
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7626
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7627
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7628
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7629
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7630
        constantNamed:'GenericToolbarIconLibrary class smallYellowPackageIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7631
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7632
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7633
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7634
startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7635
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7636
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7637
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7638
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7639
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7640
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7641
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7642
     self startableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7643
     ImageEditor openOnClass:self andSelector:#startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7644
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7645
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7646
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7647
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7648
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7649
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7650
	constantNamed:#'GenericToolbarIconLibrary class startableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7651
	ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'**J*NJ*"*#"*!!J(@*!!T*@J(DJ B*DR(@*!!T*NJ(*J B*O2(@*+.*@J*** @b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ @B@@\@C8@O @>@C8@H @>@A0@G@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7652
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7653
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7654
testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7655
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7656
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7657
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7658
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7659
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7660
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7661
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7662
     self testCaseClassIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7663
     ImageEditor openOnClass:self andSelector:#testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7664
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7665
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7666
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7667
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7668
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7669
    ^Icon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7670
        constantNamed:'GenericToolbarIconLibrary class testCaseClassIcon'
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7671
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@H @@@@@@@"D@@@@@@@HP@@@@@ @"D@@@@@H HP@@@@@AH"D@@@@@@AHP@@@@@@@A@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 56 142 51]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@C@@\@A AN@F0@_@@8@A@@@@@@a') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7672
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  7673
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7674
testCaseFailedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7675
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7676
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7677
    ^ self redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7678
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7679
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7680
testCasePassedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7681
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7682
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7683
    ^ self greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7684
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7685
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7686
visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7687
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7688
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7689
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7690
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7691
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7692
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7693
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7694
     self visualStartableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7695
     ImageEditor openOnClass:self andSelector:#visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7696
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7697
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7698
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7699
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7700
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7701
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7702
	constantNamed:#'GenericToolbarIconLibrary class visualStartableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7703
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@P@@@@9&XPE&XP@NY!!C E&D@C&DN; E!!@@9!!@N@AXP@NXP8N@VD@C&DN; E!!@@9!!A&XAXP@NXPY&@VD@C1DVI!!DQ@@@@D"HP@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7704
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7705
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7706
warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7707
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7708
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7709
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7710
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7711
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7712
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7713
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7714
     self warningClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7715
     ImageEditor openOnClass:self andSelector:#warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7716
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7717
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7718
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7719
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7720
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7721
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7722
	constantNamed:#'GenericToolbarIconLibrary class warningClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7723
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 127 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7724
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7725
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7726
webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7727
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7728
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7729
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7730
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7731
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7732
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7733
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7734
     self webServiceClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7735
     ImageEditor openOnClass:self andSelector:#webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7736
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7737
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7738
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7739
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7740
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7741
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7742
	constantNamed:#'GenericToolbarIconLibrary class webServiceClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7743
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@ADQD@@@@@DQDQD@@@@QDQDQD@@ACMDP3MD@@P3MDP3M@@DL3QCL3P@ADL4P3L4@@QCMDL3Q@@@QDQCMD@@@@QDQDP@@@@@QDQ@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C8@_0C? _?A?<G?0_?A?<C? G<@O @@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7744
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7745
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7746
windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7747
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7748
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7749
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7750
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7751
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7752
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7753
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7754
     self windowClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7755
     ImageEditor openOnClass:self andSelector:#windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7756
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7757
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7758
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7759
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7760
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7761
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7762
	constantNamed:#'GenericToolbarIconLibrary class windowClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7763
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.8P@N??????D@C/?????1@@;?????<P@N??????D@C/?????1@@;?????<P@N??????D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7764
! !
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  7765
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7766
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-UIPainter'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7767
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7768
copyWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7769
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7770
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7771
    ^ self copy22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7772
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7773
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7774
cutWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7775
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7776
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7777
    ^ self cut22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7778
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7779
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7780
deleteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7781
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7782
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7783
    ^ self delete22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7784
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7785
3883
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7786
gridAlignIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7787
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7788
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7789
    ^ self gridAlign16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7790
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7791
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7792
gridIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7793
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7794
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7795
    ^ self grid16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7796
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  7797
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7798
loadFromMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7799
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7800
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7801
    ^ self loadFromMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7802
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7803
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7804
moveWidgetDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7805
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7806
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7807
    ^ self down22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7808
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7809
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7810
moveWidgetDownRightIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7811
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7812
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7813
    ^ self downRight22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7814
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7815
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7816
moveWidgetLeftDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7817
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7818
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7819
    ^ self leftDown22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7820
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7821
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7822
moveWidgetUpIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7823
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7824
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7825
    ^ self up22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7826
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7827
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7828
newWindowSpecIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7829
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7830
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7831
    ^ self newWindowSpec24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7832
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7833
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7834
pasteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7835
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7836
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7837
    ^ self paste22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7838
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7839
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7840
saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7841
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7842
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7843
    ^ self saveAsMethod22x22Icon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7844
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7845
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7846
saveAsMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7847
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7848
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7849
    ^ self saveAsMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7850
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7851
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7852
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-misc'!
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7853
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7854
errorIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7855
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7856
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7857
    ^ self error32x32Icon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7858
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7859
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7860
newDataSetIcon
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7861
    <resource: #programImage>
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7862
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7863
    ^ self newDataSet24x24Icon
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7864
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7865
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7866
newRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7867
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7868
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7869
    ^ self newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7870
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7871
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7872
removeRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7873
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7874
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  7875
    ^ self cutMenuItem22x22Icon
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7876
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7877
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7878
warnIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7879
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7880
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  7881
    ^ self warn32x32Icon
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7882
! !
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  7883
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7884
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7885
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7886
version
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  7887
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.103 2009-11-02 15:17:11 cg Exp $'
3946
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
  7888
!
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
  7889
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
  7890
version_CVS
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  7891
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.103 2009-11-02 15:17:11 cg Exp $'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7892
! !
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  7893
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  7894
GenericToolbarIconLibrary initialize!