GenericToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Wed, 31 Aug 2011 10:57:01 +0200
changeset 4305 d12aa9cae683
parent 4304 e13c7d8a5b8b
child 4306 e346f1724ba3
permissions -rw-r--r--
added: #iconEqual12x12 #iconEqualGray12x12 #iconMinusGray12x12 #iconPlusGray12x12
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
"
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    12
"{ Package: 'stx:libwidg' }"
3059
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
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    42
    Every method found here returns as value an image instance, which can be
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    43
    directly used for labels, menus, etc.
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    44
    The use of external files for bitmap images is no longer considered good style,
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    45
    and all uses of them within st/x are replaced by internal icons over the time.
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    46
    (the reason is that it makes packaging, deployment etc. much easier. Also,
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    47
    systems which have a poor disk performance for small files (aka Windows) suffer from
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    48
    accessing many small bitmap files. So performance is improved there).
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    49
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    50
    Notice: now, ToolbarIconLibrary is a reference to the actual IconLibrary,
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    51
    which will refer to either this class (GenericToolbarIconLibrary) or
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    52
    one of its subclasses (especially: XPToolbarIconLibrary).
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    53
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    54
    The choice of which concrete iconLibrary class is actually used
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    55
    is done in the styleSheet, where the global variable ToolbarIconLibrary
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    56
    is set (see mswindowsXP.style as an example).
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    60
!GenericToolbarIconLibrary class methodsFor:'class initialization'!
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    61
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    62
initialize
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    63
    ToolbarIconLibrary isNil ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
    64
	ToolbarIconLibrary := self
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    65
    ]
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    66
! !
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    67
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    68
!GenericToolbarIconLibrary class methodsFor:'compatibility-VW'!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    69
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    70
visualFor:aKey
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    71
    ^ self perform:aKey ifNotUnderstood:[nil]
3894
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    72
! !
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    73
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    74
!GenericToolbarIconLibrary class methodsFor:'image specs'!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    75
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    76
barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    77
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    78
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    79
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    80
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    81
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    82
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    83
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    84
     self barResizeHorizontalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    85
     ImageEditor openOnClass:self andSelector:#barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    86
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    87
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    88
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    89
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    90
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    91
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    92
	constantNamed:'GenericToolbarIconLibrary class barResizeHorizontalIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    93
	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]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    94
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    95
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    96
barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    97
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    98
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    99
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   100
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   101
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   102
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   103
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   104
     self barResizeVerticalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   105
     ImageEditor openOnClass:self andSelector:#barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   106
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   107
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   108
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   109
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   110
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   111
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   112
	constantNamed:'GenericToolbarIconLibrary class barResizeVerticalIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   113
	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]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   114
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   115
4281
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   116
breakpointBlueDisabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   117
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   118
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   119
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   120
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   121
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   122
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   123
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   124
     self breakpointBlueDisabled16x16 inspect
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   125
     ImageEditor openOnClass:self andSelector:#breakpointBlueDisabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   126
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   127
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   128
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   129
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   130
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   131
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   132
        constantNamed:'GenericToolbarIconLibrary class breakpointBlueDisabled16x16'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   133
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   134
B0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,K@@@KB0,KB0,K@@,K@@@@@@@@B0,KB0,KB0@@@@LEA0TC@@,KB0,KB0,@@@LH@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   135
B@L@B0,KB0,K@@@I@@@@@@@I@@,KB0,KB0@@@P@@@@@@@P@KB0,KB0,K@@$@@@@@@@$@B0,KB0,KB0@DA @@@@XD@@@KB0,KB0,K@@PJ@P(D@@,@B0,KB0,@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   136
@@@@@@@@@@,K@@,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   137
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[227 235 248 79 80 79 255 255 255 201 201 201 182 182 182 135 135 135 122 122 122 105 105 105 103 103 103 98 98 98 85 85 85 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@]0A#@DD@X0A7@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   138
!
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   139
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   140
breakpointBlueEnabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   141
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   142
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   143
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   144
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   145
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   146
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   147
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   148
     self breakpointBlueEnabled16x16 inspect
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   149
     ImageEditor openOnClass:self andSelector:#breakpointBlueEnabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   150
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   151
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   152
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   153
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   154
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   155
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   156
        constantNamed:'GenericToolbarIconLibrary class breakpointBlueEnabled16x16'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   157
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   158
D1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1L@@ALSD1LSD1LSD1LS@@@@@@@@D1LSD1LSD0@S@@(C@ LJ@ALSD1LSD1L@@@<ABP,I
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   159
@P<@D1LSD1LS@@@CBADQDP C@ALSD1LSD1L@@ PMCAHD@ @SD1LSD1LS@@LEC 8NAPL@D1LSD1LS@@@O@PXPA0DO@ALSD1LSD1LS@@(C@ LJ@@@SD1LSD1LS
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   160
D0@@@@@@@ALSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   161
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 252 255 46 85 127 38 78 114 54 98 139 108 165 203 107 159 195 131 175 205 130 174 204 130 172 200 152 185 208 169 202 225 180 209 229 83 149 190 90 154 194 115 169 204 144 188 216 145 188 215 152 193 219 89 154 192 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@_0A?@G<@_0A?@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   162
!
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   163
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   164
breakpointRedDisabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   165
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   166
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   167
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   168
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   169
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   170
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   171
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   172
     self breakpointRedDisabled16x16 inspect
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   173
     ImageEditor openOnClass:self andSelector:#breakpointRedDisabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   174
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   175
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   176
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   177
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   178
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   179
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   180
        constantNamed:'GenericToolbarIconLibrary class breakpointRedDisabled16x16'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   181
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   182
B0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,K@@@KB0,KB0,K@@,K@@@@@@@@B0,KB0,KB0@@@@LEA0TC@@,KB0,KB0,@@@LH@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   183
B@L@B0,KB0,K@@@I@@@@@@@I@@,KB0,KB0@@@P@@@@@@@P@KB0,KB0,K@@$@@@@@@@$@B0,KB0,KB0@DA @@@@XD@@@KB0,KB0,K@@PJ@P(D@@,@B0,KB0,@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   184
@@@@@@@@@@,K@@,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   185
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[227 235 248 79 80 79 255 255 255 201 201 201 182 182 182 135 135 135 122 122 122 105 105 105 103 103 103 98 98 98 85 85 85 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@]0A#@DD@X0A7@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   186
!
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   187
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   188
breakpointRedEnabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   189
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   190
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   191
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   192
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   193
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   194
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   195
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   196
     self breakpointRedEnabled16x16 inspect
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   197
     ImageEditor openOnClass:self andSelector:#breakpointRedEnabled16x16
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   198
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   199
    "
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   200
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   201
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   202
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   203
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   204
        constantNamed:'GenericToolbarIconLibrary class breakpointRedEnabled16x16'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   205
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   206
D1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1L@@ALSD1LSD1LSD1LS@@@@@@@@D1LSD1LSD0@S@@(C@ LJ@ALSD1LSD1L@@@<ABP,I
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   207
@P<@D1LSD1LS@@@CBADQDP C@ALSD1LSD1L@@ PMCAHD@ @SD1LSD1LS@@LEC 8NAPL@D1LSD1LS@@@O@PXPA0DO@ALSD1LSD1LS@@(C@ LJ@@@SD1LSD1LS
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   208
D0@@@@@@@ALSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   209
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[253 255 252 127 73 46 114 60 38 139 79 54 203 129 108 195 127 107 205 147 131 204 146 130 200 145 130 208 165 152 225 182 169 229 191 180 190 104 83 194 111 90 204 134 115 216 159 144 215 159 145 219 166 152 192 108 89 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@_0A?@G<@_0A?@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   210
!
Claus Gittinger <cg@exept.de>
parents: 4244
diff changeset
   211
4085
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   212
newClassWizardIcon
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   213
    "This resource specification was automatically generated
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   214
     by the ImageEditor of ST/X."
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   215
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   216
    "Do not manually edit this!! If it is corrupted,
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   217
     the ImageEditor may not be able to read the specification."
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   218
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   219
    "
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   220
     self newClassWizardIcon inspect
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   221
     ImageEditor openOnClass:self andSelector:#newClassWizardIcon
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   222
     Icon flushCachedIcons
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   223
    "
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   224
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   225
    <resource: #image>
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   226
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   227
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   228
	constantNamed:'GenericToolbarIconLibrary class newClassWizardIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   229
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4092
eeece635d420 changed: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4091
diff changeset
   230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
eeece635d420 changed: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4091
diff changeset
   231
@@@@@@@@@@@8B@ HB@ HB@ HB@ 8@@@@@@@@@@@@@@@H:^''):^''):^''):S H@@@@@@@@@@@@@@@H:PXFA XFA XFA!!8H@@@@@@@@@@@@@@@H:PXFA XFA XF
eeece635d420 changed: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4091
diff changeset
   232
A!!91RF$@@@@@@@@@@@@H:PXFA ZB^G(FA&5/&38@@@@@@@@@@@@HNA8^G!!97,)EXT&KC%DL@@@@@@@@@@@@8B@ HB@!!9%.^-#;''#]V,@@@@@@@@@@@@@@@@@
4085
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   233
@@B5V[C)9^S^V#\@@@@@@@@@@@@@@@@@@@@@TIO&7]_V)5\!!QP@@@@@@@@@@@@@@@@A-W;_!!5=SS6-F"O2 @@@@@@@@@@@@@@GM,7NO_5]OA&&)ILCT@@@@@
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   234
@@@@@@@@@D^]%WY +="IDC,V_P@@@@@@@@@@@@@@@F!!@PV\.X=Q.A0>DFP@@@@@@@@@@@@@@@@@@@@@@H*9VBP@Q 1L@@@@@@@@@@@@@@@@@@@@@P$P2$ 0@
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   235
D(D$@@@@@@@@@@@@@@@@@@@@@BL4@@@K@AP3I@@@@@@@@@@@@@@@@@@@@@@@@@@@I HXLRX@@@@@@@@@@@@@@@@@@@@@@@@@@BPBGR<1@@@@@@@@@@@@@@@@
4092
eeece635d420 changed: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4091
diff changeset
   236
@@@@@@@@@@@*@!!<W@@@@@@@@@@@@@@@@@@@@@@@@@@@@JPTJ') ; colorMapFromArray:#[0 0 0 3 3 3 4 4 4 4 8 8 11 16 17 12 12 12 32 223 32 33 4 8 64 64 64 67 27 35 69 69 69 75 80 80 80 93 92 90 19 2 94 95 110 107 120 120 109 13 19 109 107 107 111 110 110 111 115 115 112 112 112 116 117 116 120 76 87 120 120 120 121 121 121 121 132 132 122 120 120 122 122 122 125 57 47 125 125 125 127 127 127 133 133 133 140 70 60 144 32 17 145 28 14 158 75 75 158 158 158 159 36 2 159 159 159 160 34 3 161 79 79 161 161 161 162 162 162 163 59 29 163 63 34 164 164 164 165 76 76 166 166 166 167 46 5 167 167 167 168 46 6 168 168 168 169 89 89 169 91 91 169 171 171 170 86 86 170 170 170 171 79 75 173 90 77 173 125 137 173 173 173 174 85 83 175 49 40 176 68 12 177 50 40 177 67 67 177 111 111 179 70 70 180 72 11 180 117 117 180 180 180 181 26 10 181 28 13 181 80 16 181 179 180 181 186 191 183 70 49 183 88 19 184 69 48 184 186 186 185 55 55 185 183 184 186 56 56 190 50 30 190 52 32 190 104 94 191 87 23 192 94 18 193 37 20 193 38 17 193 88 18 193 108 101 194 81 72 194 85 77 195 165 162 196 67 35 196 92 19 196 144 142 197 68 34 197 99 19 197 147 144 198 80 57 198 81 55 198 128 128 199 96 93 199 102 100 200 105 21 202 136 136 203 82 39 203 107 107 203 109 25 204 83 37 204 85 46 204 102 102 205 88 47 205 104 103 205 172 171 207 111 32 208 116 34 210 44 27 210 44 29 211 86 86 211 93 93 211 138 29 214 83 58 215 201 202 216 87 60 216 142 31 216 183 183 217 217 217 218 66 59 218 218 218 218 225 224 219 65 39 220 134 134 220 140 140 220 188 188 221 141 25 222 168 168 223 32 32 223 157 52 223 170 170 223 223 32 224 136 74 224 160 53 225 125 88 225 214 215 226 139 77 226 165 73 226 167 74 227 133 95 227 143 29 228 151 118 228 157 124 229 149 33 229 159 68 230 185 185 232 162 71 232 187 187 237 201 113 239 203 111 239 236 236 240 177 48 240 190 95 241 154 38 241 192 97 242 195 195 242 200 38 243 203 45 243 236 237 244 202 202 244 212 212 244 215 215 245 211 166 246 182 50 246 204 39 246 215 174 246 218 162 247 202 143 247 224 224 247 226 163 247 228 228 247 241 241 248 224 165 248 233 233 249 228 166 249 230 230 249 244 244 249 245 245 250 228 195 250 247 247 251 232 48 251 239 239 252 215 48 252 249 249 253 245 165 253 247 247 253 249 249 253 251 251 253 252 252 253 253 253 254 229 48 254 233 48 254 247 200 254 248 202 254 253 253 254 254 254 255 214 57 255 233 52 255 239 67 255 240 51 255 241 49 255 242 70 255 245 68 255 246 68 255 246 122 255 248 62 255 248 94 255 249 62 255 249 93 255 249 166 255 251 176 255 252 111 255 253 112 255 254 171 255 254 180 255 255 171 255 255 174 255 255 180 255 255 214 255 255 216 255 255 251 255 255 253 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@O?8@O?8@O?8@O?>@O?>@O?>@O?>@@O>@@G? @O?0@_?0@_? @_? @@?0@@?8@@Y<@@@>@@@_@@@O@@@G') ; yourself); yourself]
4085
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   237
!
979f56740ffe added: #newClassWizardIcon
Claus Gittinger <cg@exept.de>
parents: 4072
diff changeset
   238
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   239
photoAreaIcon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   240
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   241
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   242
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   243
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   244
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   245
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   246
    "
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   247
     self photoAreaIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   248
     ImageEditor openOnClass:self andSelector:#photoAreaIcon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   249
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   250
    "
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   251
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   252
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   253
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   254
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   255
        constantNamed:'GenericToolbarIconLibrary class photoAreaIcon'
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   256
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   257
QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   258
@@@@@@@@QTT@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   259
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   260
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   261
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   262
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   263
@@@@@@@@@DUEQTUE@@@@@@@@@@@@@@@@@@@@@@@@@DUEQTUE') ; colorMapFromArray:#[143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116 25 25 25]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'>@@@>@@@0@@@0@@@3?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??;@@@C@@@C@@@_@@@_') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   264
!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   265
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   266
photoIcon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   267
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   268
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   269
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   270
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   271
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   272
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   273
    "
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   274
     self photoIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   275
     ImageEditor openOnClass:self andSelector:#photoIcon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   276
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   277
    "
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   278
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   279
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   280
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   281
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   282
        constantNamed:'GenericToolbarIconLibrary class photoIcon'
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   283
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   284
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   285
@@@@@@@@@@@@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   286
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   287
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   288
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   289
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   290
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@C?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   291
!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
   292
4244
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   293
repositoryIcon
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   294
    "This resource specification was automatically generated
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   295
     by the ImageEditor of ST/X."
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   296
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   297
    "Do not manually edit this!! If it is corrupted,
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   298
     the ImageEditor may not be able to read the specification."
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   299
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   300
    "
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   301
     self repositoryIcon inspect
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   302
     ImageEditor openOnClass:self andSelector:#repositoryIcon
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   303
     Icon flushCachedIcons
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   304
    "
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   305
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   306
    <resource: #image>
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   307
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   308
    ^Icon
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   309
        constantNamed:'GenericToolbarIconLibrary class repositoryIcon'
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   310
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   311
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
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   312
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDA@PDA@PDA@PDAAS$0AP A@PDA@PDA@PDA@PT9L@TI
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   313
@PHB@PHB@PHB@PDENRHEB DD@ (B@ (B@ DAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   314
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   315
!
08c72c3e41cb added: #repositoryIcon
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
   316
4243
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   317
repositoryPerforceIcon
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   318
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   319
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   320
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   321
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   322
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   323
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   324
    "
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   325
     self repositoryPerforceIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   326
     ImageEditor openOnClass:self andSelector:#repositoryPerforceIcon
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   327
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   328
    "
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   329
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   330
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   331
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   332
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   333
        constantNamed:'GenericToolbarIconLibrary class repositoryPerforceIcon'
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   334
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   335
MSTWEATSC0,WMST5MST5MSTRK"(3LR  HQH5MST5MST5E"<)L3D(HBDFMST5MST5MP$YH24%GQ(\DCT5MST5MSTGG203LR  HQ@5MST5MST5BA<,L3@''HBDQ
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   336
MST5MST5MP(_J3P2I"@!!DST5MST5MSTLA@PDA@PDA@PDA@PDA@P5C@P$IBP$IBP$IBP$IBPDMP4DIBP$@0L"I@L"H"H$ACTNABH"I@H"@2PC@2H"I@P5C P^
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   337
G"PB@2H$@0LCH"PDMQ DF1,$@18[H"HCH"H$ACT5AA,[F1,[F1,[F1,[F0P5MPPDA@PDA@PDA@PDA@PDMST5MST5MST5MST5MST5MP@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   338
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[25 50 99 34 56 94 40 69 126 47 75 130 69 80 102 104 97 99 170 93 6 175 116 32 175 117 31 175 118 32 177 118 30 178 115 11 178 119 30 180 121 31 180 121 32 183 129 16 184 110 20 185 110 19 185 160 32 186 138 21 188 137 19 188 142 23 191 147 29 194 167 52 199 167 58 226 156 19 226 166 20 227 246 255 229 121 6 237 197 37 237 248 254 240 200 59 240 207 60 242 177 31 242 245 249 243 213 53 245 246 251 246 223 77 246 224 88 246 224 89 246 224 90 249 213 68 249 216 77 249 232 112 249 233 112 249 240 101 251 201 44 251 203 45 251 239 139 251 239 140 251 240 138 252 248 161 252 248 162 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]
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   339
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   340
    "Created: / 19-04-2011 / 14:14:13 / cg"
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   341
!
Claus Gittinger <cg@exept.de>
parents: 4240
diff changeset
   342
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   343
sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   344
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   345
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   346
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   347
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   348
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   349
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   350
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   351
     self sortIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   352
     ImageEditor openOnClass:self andSelector:#sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   353
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   354
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   355
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   356
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   357
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   358
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   359
	constantNamed:#'DataSetLabel class sortIndicatorGreyIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   360
	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]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   361
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   362
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   363
sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   364
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   365
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   366
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   367
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   368
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   369
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   370
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   371
     self sortIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   372
     ImageEditor openOnClass:self andSelector:#sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   373
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   374
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   375
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   376
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   377
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   378
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   379
	constantNamed:'DataSetLabel class sortIndicatorIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   380
	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]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   381
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   382
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   383
sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   384
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   385
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   386
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   387
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   388
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   389
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   390
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   391
     self sortReverseIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   392
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   393
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   394
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   395
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   396
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   397
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   398
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   399
	constantNamed:#'DataSetLabel class sortReverseIndicatorGreyIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   400
	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]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   401
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   402
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   403
sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   404
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   405
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   406
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   407
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   408
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   409
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   410
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   411
     self sortReverseIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   412
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   413
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   414
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   415
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   416
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   417
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   418
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   419
	constantNamed:'DataSetLabel class sortReverseIndicatorIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   420
	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]
4096
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   421
!
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   422
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   423
standaloneStartupIcon
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   424
    "This resource specification was automatically generated
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   425
     by the ImageEditor of ST/X."
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   426
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   427
    "Do not manually edit this!! If it is corrupted,
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   428
     the ImageEditor may not be able to read the specification."
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   429
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   430
    "
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   431
     self standaloneStartupIcon inspect
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   432
     ImageEditor openOnClass:self andSelector:#standaloneStartupIcon
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   433
     Icon flushCachedIcons
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   434
    "
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   435
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   436
    <resource: #image>
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   437
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   438
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   439
	constantNamed:'GenericToolbarIconLibrary class standaloneStartupIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   440
	ifAbsentPut:[(Depth24Image new) width: 13; height: 11; photometric:(#rgb); bitsPerSample:(#[8 8 8]); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4096
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   441
@@@@@@@@H6(]5M;T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JG$ JWL" Z]=8._"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JG  ..N1
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   442
U:IOJF4 ''[*Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@IV8^'']2M''-.P%]JKQX$?SX]H.\27@@@@@@@@@@@@@@@@@@@@@@@@JG$ ],9 Z<!!V[<%["=Q<];=-
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   443
M''(/XYA]1</G@@@@@@@@@@@@@@@@J''8"XLYFVLIAW\UFU<M@[<)\ZK5XL&$-,\R/@@@@@@@@@@@@@@@@J''8"\=!!Z^NE!!_-]+^L5%Y[EYJWD"XYA]@@@@@@@@
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   444
@@@@@@@@@@@@J''8"!!>U1"]Q9!!L-6O(,6QG ?,\R/@@@@@@@@@@@@@@@@@@@@@@@@JW(!!!!\=6VZ!!PJWP!!"*ZG9.[&@@@@@@@@@@@@@@@@@@@@@@@@@@@@JW,!!
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   445
KX %_J!!92L3G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JW,!!5M;T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'L@@<@C8@O8@?8C? O<@? C<@O@@0@@@a') ; yourself); yourself]
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   446
! !
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   447
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   448
!GenericToolbarIconLibrary class methodsFor:'image specs-09x09'!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   449
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   450
closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   451
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   452
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   453
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   454
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   455
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   456
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   457
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   458
     self closeIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   459
     ImageEditor openOnClass:self andSelector:#closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   460
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   461
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   462
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   463
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   464
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   465
    ^Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   466
        constantNamed:'GenericToolbarIconLibrary class closeIndicatorInTree9x9Icon'
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   467
        ifAbsentPut:[(Depth2Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUU@Z*)@Z")@Z")@X@I-Z")@Z")KZ*)@UUU;') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   468
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   469
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   470
openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   471
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   472
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   473
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   474
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   475
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   476
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   477
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   478
     self openIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   479
     ImageEditor openOnClass:self andSelector:#openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   480
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   481
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   482
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   483
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   484
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   485
    ^Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   486
        constantNamed:'GenericToolbarIconLibrary class openIndicatorInTree9x9Icon'
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   487
        ifAbsentPut:[(Depth2Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUU@Z*)@Z*)(Z*)HX@I@Z*)@Z*)@Z*)@UUU.') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   488
! !
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   489
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   490
!GenericToolbarIconLibrary class methodsFor:'image specs-12x12'!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   491
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   492
iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   493
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   494
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   495
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   496
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   497
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   498
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   499
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   500
     self iconEqual12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   501
     ImageEditor openOnClass:self andSelector:#iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   502
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   503
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   504
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   505
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   506
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   507
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   508
        constantNamed:'GenericToolbarIconLibrary class iconEqual12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   509
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   510
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   511
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   512
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   513
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   514
iconEqualGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   515
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   516
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   517
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   518
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   519
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   520
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   521
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   522
     self iconEqualGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   523
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   524
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   525
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   526
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   527
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   528
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   529
        constantNamed:'GenericToolbarIconLibrary class iconEqualGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   530
        ifAbsentPut:[self iconEqual12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   531
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   532
    "Created: / 31-08-2011 / 10:53:15 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   533
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   534
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   535
iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   536
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   537
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   538
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   539
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   540
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   541
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   542
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   543
     self iconMinus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   544
     ImageEditor openOnClass:self andSelector:#iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   545
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   546
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   547
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   548
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   549
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   550
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   551
        constantNamed:'GenericToolbarIconLibrary class iconMinus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   552
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   553
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   554
D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@,@@@@E@@G?<O?0??C?<@@F@@D@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   555
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   556
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   557
iconMinusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   558
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   559
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   560
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   561
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   562
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   563
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   564
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   565
     self iconMinusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   566
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   567
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   568
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   569
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   570
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   571
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   572
        constantNamed:'GenericToolbarIconLibrary class iconMinusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   573
        ifAbsentPut:[self iconMinus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   574
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   575
    "Created: / 31-08-2011 / 10:54:22 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   576
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   577
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   578
iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   579
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   580
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   581
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   582
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   583
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   584
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   585
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   586
     self iconPlus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   587
     ImageEditor openOnClass:self andSelector:#iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   588
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   589
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   590
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   591
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   592
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   593
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   594
        constantNamed:'GenericToolbarIconLibrary class iconPlus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   595
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   596
@@@@@@DB@0P@@@@@@@@@@@TFA0 @@@@@@@@@@@$JB0 @@@@@@@@@@@$LCP8@@@@@C1@QDP$LCP8RD1LS@!!PJEP(VCP\WFA$Z@ ,[A XMGA4^G2@!!H 8NC  G
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   597
E1LSH2P$@@@@@BTWFBX@@@@@@@@@@AHXI2D@@@@@@@@@@BL''HBD@@@@@@@@@@B !!F"$@@@@@') ; colorMapFromArray:#[255 248 250 80 176 60 32 160 30 32 144 20 96 160 80 16 160 20 144 240 130 128 208 100 16 128 20 16 176 20 176 240 140 128 224 110 176 240 160 144 224 110 0 128 0 96 160 50 0 160 0 0 176 0 0 112 0 0 96 0 144 224 130 192 240 160 160 240 130 96 208 80 80 192 60 64 160 50 16 80 0 144 240 110 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 0 80 0 16 64 20 16 112 20 16 96 20 64 176 50 64 112 60 96 112 80]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0G?<O?0??C?<@<FC0DO@@<@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   598
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   599
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   600
iconPlusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   601
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   602
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   603
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   604
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   605
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   606
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   607
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   608
     self iconPlusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   609
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   610
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   611
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   612
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   613
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   614
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   615
        constantNamed:'GenericToolbarIconLibrary class iconPlusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   616
        ifAbsentPut:[self iconPlus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   617
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   618
    "Created: / 31-08-2011 / 10:54:27 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   619
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   620
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   621
padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   622
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   623
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   624
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   625
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   626
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   627
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   628
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   629
     self padLockBlack12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   630
     ImageEditor openOnClass:self andSelector:#padLockBlack12x12Icon
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   631
     Icon flushCachedIcons
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   632
    "
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   633
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   634
    <resource: #image>
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   635
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   636
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   637
	constantNamed:#'GenericToolbarIconLibrary class padLockBlack12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   638
	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
   639
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   640
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   641
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   642
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   643
padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   644
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   645
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   646
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   647
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   648
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   649
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   650
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   651
     self padLockBlue12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   652
     ImageEditor openOnClass:self andSelector:#padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   653
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   654
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   655
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   656
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   657
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   658
	constantNamed:#'GenericToolbarIconLibrary class padLockBlue12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   659
	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
   660
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   661
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   662
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   663
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   664
padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   665
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   666
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   667
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   668
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   669
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   670
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   671
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   672
     self padLockGray12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   673
     ImageEditor openOnClass:self andSelector:#padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   674
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   675
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   676
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   677
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   678
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   679
	constantNamed:#'GenericToolbarIconLibrary class padLockGray12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   680
	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
   681
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   682
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   683
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   684
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   685
padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   686
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   687
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   688
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   689
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   690
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   691
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   692
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   693
     self padLockGreen12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   694
     ImageEditor openOnClass:self andSelector:#padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   695
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   696
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   697
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   698
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   699
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   700
	constantNamed:#'GenericToolbarIconLibrary class padLockGreen12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   701
	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
   702
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   703
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   704
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   705
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   706
padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   707
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   708
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   709
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   710
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   711
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   712
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   713
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   714
     self padLockRed12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   715
     ImageEditor openOnClass:self andSelector:#padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   716
     Icon flushCachedIcons
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   717
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   718
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   719
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   720
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   721
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   722
	constantNamed:#'GenericToolbarIconLibrary class padLockRed12x12Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   723
	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
   724
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   725
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   726
! !
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   727
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   728
!GenericToolbarIconLibrary class methodsFor:'image specs-14x14'!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   729
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   730
ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   731
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   732
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   733
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   734
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   735
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   736
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   737
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   738
     self ledGreen14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   739
     ImageEditor openOnClass:self andSelector:#ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   740
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   741
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   742
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   743
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   744
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   745
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   746
	constantNamed:'GenericToolbarIconLibrary class ledGreen14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   747
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   748
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
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   749
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.
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   750
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]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   751
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   752
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   753
ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   754
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   755
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   756
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   757
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   758
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   759
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   760
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   761
     self ledRed14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   762
     ImageEditor openOnClass:self andSelector:#ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   763
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   764
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   765
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   766
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   767
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   768
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   769
	constantNamed:'GenericToolbarIconLibrary class ledRed14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   770
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   771
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!! \
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   772
HB@\FAHAJ  HI LMF2\+J2,_CPL&B@ %A04-LCH3L2<MA2THBBXLDS$6NC 7NQDLI  HJ!!(TLC(<OC,2E!!(*B@ HIQTYJCP4JA$UIP HB@ HIA\PB0,PE2PH
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   773
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]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   774
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   775
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   776
ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   777
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   778
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   779
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   780
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   781
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   782
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   783
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   784
     self ledYellow14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   785
     ImageEditor openOnClass:self andSelector:#ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   786
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   787
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   788
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   789
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   790
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   791
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   792
	constantNamed:'GenericToolbarIconLibrary class ledYellow14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   793
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   794
@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$,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   795
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
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   796
@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]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   797
! !
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   798
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   799
!GenericToolbarIconLibrary class methodsFor:'image specs-15x15'!
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   800
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   801
smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   802
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   803
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   804
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   805
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   806
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   807
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   808
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   809
     self smiley_angry inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   810
     ImageEditor openOnClass:self andSelector:#smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   811
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   812
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   813
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   814
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   815
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   816
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   817
	constantNamed:#'GenericToolbarIconLibrary class smiley_angry'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   818
	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
   819
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
   820
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
   821
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
   822
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   823
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   824
smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   825
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   826
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   827
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   828
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   829
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   830
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   831
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   832
     self smiley_biggrin inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   833
     ImageEditor openOnClass:self andSelector:#smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   834
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   835
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   836
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   837
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   838
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   839
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   840
	constantNamed:#'GenericToolbarIconLibrary class smiley_biggrin'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   841
	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
   842
@ 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
   843
@@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
   844
@ 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
   845
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   846
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   847
smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   848
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   849
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   850
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   851
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   852
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   853
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   854
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   855
     self smiley_cool inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   856
     ImageEditor openOnClass:self andSelector:#smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   857
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   858
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   859
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   860
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   861
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   862
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   863
	constantNamed:#'GenericToolbarIconLibrary class smiley_cool'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   864
	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
   865
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@@@@@@@@@H@@@@@@@@@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   866
@@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
   867
@@@@@ 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
   868
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   869
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   870
smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   871
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   872
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   873
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   874
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   875
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   876
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   877
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   878
     self smiley_eek inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   879
     ImageEditor openOnClass:self andSelector:#smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   880
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   881
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   882
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   883
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   884
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   885
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   886
	constantNamed:#'GenericToolbarIconLibrary class smiley_eek'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   887
	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
   888
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
   889
@@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
   890
@@@@@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
   891
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   892
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   893
smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   894
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   895
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   896
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   897
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   898
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   899
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   900
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   901
     self smiley_frown inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   902
     ImageEditor openOnClass:self andSelector:#smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   903
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   904
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   905
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   906
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   907
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   908
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   909
	constantNamed:#'GenericToolbarIconLibrary class smiley_frown'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   910
	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
   911
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
   912
@@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
   913
@@@@@ 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
   914
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   915
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   916
smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   917
    "This resource specification was automatically generated
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   918
     by the ImageEditor of ST/X."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   919
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   920
    "Do not manually edit this!! If it is corrupted,
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   921
     the ImageEditor may not be able to read the specification."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   922
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   923
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   924
     self smiley_mhmh inspect
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   925
     ImageEditor openOnClass:self andSelector:#smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   926
     Icon flushCachedIcons
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   927
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   928
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   929
    <resource: #image>
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   930
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   931
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   932
	constantNamed:#'GenericToolbarIconLibrary class smiley_mhmh'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   933
	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
   934
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
   935
@@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
   936
@@@@@ 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
   937
!
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   938
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   939
smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   940
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   941
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   942
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   943
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   944
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   945
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   946
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   947
     self smiley_ok inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   948
     ImageEditor openOnClass:self andSelector:#smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   949
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   950
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   951
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   952
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   953
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   954
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   955
	constantNamed:#'GenericToolbarIconLibrary class smiley_ok'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   956
	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
   957
@ 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
   958
@@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
   959
@ 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
   960
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   961
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   962
smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   963
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   964
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   965
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   966
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   967
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   968
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   969
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   970
     self smiley_smile inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   971
     ImageEditor openOnClass:self andSelector:#smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   972
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   973
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   974
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   975
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   976
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   977
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   978
	constantNamed:#'GenericToolbarIconLibrary class smiley_smile'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   979
	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
   980
@ 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
   981
@@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
   982
@ 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
   983
! !
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   984
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
     self back16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   996
     ImageEditor openOnClass:self andSelector:#back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   997
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   998
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1003
	constantNamed:#'GenericToolbarIconLibrary class back16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1004
	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
  1005
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@PX@@@@@@@@@@@@@@@@@@PXE@@@@@@@@@@@@@@@@@PXEAP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
@@@@@@@@@@@@@PXEAPTF@ HBA @@@@@@@PXEAPTEAPTEAPP@@@@@@ XEAPTEAPTEAPTD@@@@@@@CA@TEAPTEAPTEA@@@@@@@@@LDAPTEA@PDA@P@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
@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
  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
bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1014
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1016
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1018
     self bottom16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1019
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1021
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1022
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1023
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1026
	constantNamed:#'GenericToolbarIconLibrary class bottom16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1027
	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
  1028
@@@@@@@@@@@@@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
  1029
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
  1030
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1031
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1032
browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1033
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1034
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1035
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1036
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1037
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1038
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1039
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1040
     self browseIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1041
     ImageEditor openOnClass:self andSelector:#browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1042
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1043
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1044
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1045
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1046
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1047
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1048
	constantNamed:'GenericToolbarIconLibrary class browseIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1049
	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
  1050
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  1051
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
  1052
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1053
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1054
bugGrey16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1055
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1056
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1057
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1058
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1059
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1060
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1061
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1062
     self bugGrey16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1063
     ImageEditor openOnClass:self andSelector:#bugGrey16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1064
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1065
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1066
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1067
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1068
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1069
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1070
	constantNamed:'GenericToolbarIconLibrary class bugGrey16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1071
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1072
@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@NC @GA0\@@@@@@@@G@@ IB ,LA0@G@@@@@@@@C @PDQHRD1P@C @@@@@@@@@WFA$Z@!!,\GP@@@@@@@@@@G2@@HRH[
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1073
H2P@@@@@@@@@I"\(JR(+KB4.I @@@@@@@B<0LSH3MCT6M3 @@@@@@C$:N30=O#=@PTIC\P@@@GEGRD%JR39LST9O@@A1@@AQ@EISUEUVU5!!YV%,@TP@@@@A]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1074
W%= XVI#YFU&@@@@@@A1W#!!(ZV)+[F5.[7D@@@@@\PAX\&53]GU6]0A1@@@@@G$@@@A;_G1=@@@@^P@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[180 180 180 237 237 237 189 189 189 255 255 255 243 243 243 250 250 250 246 246 246 137 137 137 255 255 255 13 13 13 23 23 23 25 25 25 8 8 8 202 202 202 207 207 207 255 255 255 84 84 84 5 5 5 1 1 1 4 4 4 56 56 56 255 255 255 253 253 253 19 19 19 71 71 71 169 169 169 197 197 197 150 150 150 58 58 58 0 0 0 250 250 250 207 207 207 232 232 232 135 135 135 116 116 116 180 180 180 169 169 169 255 255 255 201 201 201 255 255 255 255 255 255 255 255 255 234 234 234 199 199 199 255 255 255 240 240 240 224 224 224 185 185 185 255 255 255 255 255 255 255 255 255 253 253 253 224 224 224 255 255 255 234 234 234 230 230 230 187 187 187 142 142 142 179 179 179 255 255 255 255 255 255 255 255 255 251 251 251 226 226 226 255 255 255 220 220 220 224 224 224 180 180 180 159 159 159 255 255 255 161 161 161 255 255 255 179 179 179 255 255 255 255 255 255 255 255 255 230 230 230 249 249 249 207 207 207 210 210 210 255 255 255 103 103 103 184 184 184 244 244 244 255 255 255 255 255 255 250 250 250 216 216 216 213 213 213 187 187 187 201 201 201 193 193 193 255 255 255 187 187 187 212 212 212 227 227 227 226 226 226 208 208 208 183 183 183 183 183 183 184 184 184 192 192 192 203 203 203 194 194 194 217 217 217 201 201 201 182 182 182 173 173 173 178 178 178 201 201 201 189 189 189 235 235 235 255 255 255 124 124 124 189 189 189 204 204 204 203 203 203 199 199 199 188 188 188 226 226 226 255 255 255 130 130 130 255 255 255 194 194 194 182 182 182 198 198 198]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M.A_(E> O<@?0G? _>C?<_?)_>!!?8O?0/=BOD@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1075
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1076
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1077
bugRed16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1078
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1079
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1080
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1081
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1082
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1083
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1084
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1085
     self bugRed16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1086
     ImageEditor openOnClass:self andSelector:#bugRed16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1087
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1088
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1089
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1090
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1091
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1092
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1093
	constantNamed:'GenericToolbarIconLibrary class bugRed16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1094
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1095
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1096
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1097
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[165 43 7 6 6 6 10 10 10 18 6 2 18 18 18 171 89 52 167 60 24 184 100 74 173 141 131 188 163 150 187 187 187 213 158 142 254 157 105 214 207 206 153 55 4 237 237 237 245 245 245 165 76 37 181 80 27 169 50 15 145 132 125 143 140 139 192 108 62 220 91 21 188 114 80 193 127 92 163 163 163 212 140 101 253 132 65 197 197 197 253 159 107 212 212 212 230 230 230 108 108 108 160 78 34 254 254 254 1 1 1 169 104 68 172 61 26 198 90 33 168 58 20 20 20 21 153 153 153 175 71 38 196 132 98 230 118 58 192 159 151 212 158 142 248 159 112 253 172 130 228 228 228 162 59 4 243 243 243 125 125 125 164 42 5 133 133 133 192 90 35 177 108 72 171 101 64 149 149 149 188 122 87 205 115 67 254 253 253 47 29 23 57 52 50 194 194 194 201 196 196 81 81 81 227 227 227 164 58 0 165 66 14 176 78 26 0 0 0 4 4 4 164 73 45 202 89 27 195 100 49 176 88 60 170 89 52 166 43 6 234 92 17 240 107 36 253 124 53 253 144 84 252 152 100 208 200 199 98 98 98 163 57 0 112 112 112 186 65 0 127 127 127 166 53 18 171 97 60 178 84 46 177 72 39 202 101 47 219 95 28 173 67 35 209 110 60 249 100 19 237 131 75 240 144 95 216 161 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 42 4 3 3 3 189 75 14 202 71 0 185 106 63 168 60 23 173 105 68 254 252 252 218 110 51 193 111 85 248 116 44 191 191 191 216 165 148 205 205 205 91 91 91 102 102 102 156 72 26 147 66 37 164 40 3 168 49 12 191 78 17 182 83 38 166 55 18 178 73 42 174 105 68 155 155 155 159 159 159 214 128 81 48 44 43 71 46 36 199 194 194 253 165 117 254 177 137 231 231 231 238 238 238]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1098
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1099
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1100
bugYellow16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1101
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1102
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1103
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1104
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1105
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1106
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1107
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1108
     self bugYellow16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1109
     ImageEditor openOnClass:self andSelector:#bugYellow16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1110
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1111
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1112
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1113
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1114
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1115
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1116
	constantNamed:'GenericToolbarIconLibrary class bugYellow16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1117
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1118
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1119
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1120
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[165 154 7 6 6 6 10 10 10 18 17 2 18 18 18 170 171 52 167 160 24 184 177 74 173 170 131 186 188 150 187 187 187 213 208 142 247 254 105 214 213 206 147 153 4 237 237 237 245 245 245 164 165 37 174 181 27 169 158 15 144 145 125 143 143 139 185 192 62 210 220 21 186 188 80 188 193 92 163 163 163 206 212 101 242 253 65 197 197 197 245 253 107 212 212 212 230 230 230 108 108 108 154 160 34 254 254 254 1 1 1 163 169 68 172 163 26 190 198 33 168 162 20 21 20 21 153 153 153 175 167 38 191 196 98 222 230 58 192 188 151 212 207 142 242 248 112 248 253 130 228 228 228 154 162 4 243 243 243 125 125 125 164 153 5 133 133 133 184 192 35 172 177 72 166 171 64 149 149 149 183 188 87 198 205 67 254 254 253 47 46 23 57 57 50 194 194 194 201 199 196 81 81 81 227 227 227 155 164 0 158 165 14 169 176 26 0 0 0 4 4 4 164 156 45 192 202 27 188 195 49 176 169 60 168 170 52 166 155 6 224 234 17 230 240 36 242 253 53 244 253 84 246 252 100 208 206 199 98 98 98 155 163 0 112 112 112 177 186 0 127 127 127 166 157 18 167 171 60 178 176 46 177 169 39 194 202 47 209 219 28 173 164 35 204 209 60 237 249 19 230 237 75 234 240 95 216 211 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 155 4 3 3 3 180 189 14 192 202 0 179 185 63 168 161 23 167 173 68 254 253 252 209 218 51 193 187 85 237 248 44 191 191 191 216 213 148 205 205 205 91 91 91 102 102 102 149 156 26 147 143 37 164 153 3 168 158 12 182 191 17 180 182 38 166 159 18 178 168 42 169 174 68 155 155 155 159 159 159 207 214 81 48 47 43 71 70 36 199 197 194 246 253 117 249 254 137 231 231 231 238 238 238]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1121
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1122
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1124
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1125
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1128
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
     self centerAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1133
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1135
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1137
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1138
	constantNamed:#'GenericToolbarIconLibrary class centerAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1139
	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
  1140
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1141
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1143
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1144
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1145
colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1146
    "This resource specification was automatically generated
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1147
     by the ImageEditor of ST/X."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1148
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1149
    "Do not manually edit this!! If it is corrupted,
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1150
     the ImageEditor may not be able to read the specification."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1151
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1152
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1153
     self colorHistory16x16Icon inspect
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1154
     ImageEditor openOnClass:self andSelector:#colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1155
     Icon flushCachedIcons
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1156
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1157
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1158
    <resource: #image>
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1159
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1160
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1161
	constantNamed:'GenericToolbarIconLibrary class colorHistory16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1162
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1163
@@@@@@@@@@@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
  1164
@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
  1165
!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1166
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1167
configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1168
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1169
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1170
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1171
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1172
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1173
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1174
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1175
     self configure16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1176
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1177
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1178
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1180
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1183
	constantNamed:#'GenericToolbarIconLibrary class configure16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1184
	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
  1185
@@@@@@@@@@@@@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
  1186
@@@@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
  1187
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1189
copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1190
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1191
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1193
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1194
     the ImageEditor may not be able to read the specification."
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
     self copy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
     ImageEditor openOnClass:self andSelector:#copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1199
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1200
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1201
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1203
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1204
	constantNamed:#'GenericToolbarIconLibrary class copy16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1205
	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
  1206
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1213
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
     the ImageEditor may not be able to read the specification."
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
     self cut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
     ImageEditor openOnClass:self andSelector:#cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1226
	constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1227
	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
  1228
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1231
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1238
     the ImageEditor may not be able to read the specification."
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
     self cut16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1244
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1245
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1247
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1248
	constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1249
	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
  1250
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1251
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1253
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1254
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1255
delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1256
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1257
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1258
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1259
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1260
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1261
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1262
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1263
     self delete16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1264
     ImageEditor openOnClass:self andSelector:#delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1265
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1266
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1267
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1268
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1269
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1270
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1271
	constantNamed:'GenericToolbarIconLibrary class delete16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1272
	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]
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1273
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1274
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1275
desktop16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1276
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1277
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1278
    ^self desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1279
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1280
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1281
desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1282
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1283
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1284
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1285
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1286
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1287
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1288
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1289
     self desktop16x16Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1290
     ImageEditor openOnClass:self andSelector:#desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1291
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1292
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1293
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1294
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1295
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1296
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1297
	constantNamed:'GenericToolbarIconLibrary class desktop16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1298
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1299
@@@@@@@@@@@@@@@@@@@@@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
  1300
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
  1301
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
  1302
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1303
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1304
diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1305
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1306
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1307
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1308
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1309
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1310
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1311
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1312
     self diff16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1313
     ImageEditor openOnClass:self andSelector:#diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1314
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1315
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1316
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1317
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1318
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1319
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1320
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1321
	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
  1322
@@@@@@@@@@@@@@@@@@@@@@@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
  1323
@@@@@@@@@@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
  1324
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
  1325
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1326
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1327
diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1328
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1329
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1330
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1331
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1332
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1333
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1334
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1335
     self diff16x16Icon2 inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1336
     ImageEditor openOnClass:self andSelector:#diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1337
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1338
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1339
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1340
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1341
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1342
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1343
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1344
	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
  1345
@@@@@@@@@@@@@@@@@@@@@@@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
  1346
@@@@@@@@@@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
  1347
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
  1348
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1349
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1350
doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1351
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1352
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1354
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1355
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1357
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1358
     self doIt16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1362
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1363
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1365
	constantNamed:#'GenericToolbarIconLibrary class doIt16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1366
	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
  1367
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1368
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1369
down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1370
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1371
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1372
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1373
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1374
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1375
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1376
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1377
     self down16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1378
     ImageEditor openOnClass:self andSelector:#down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1379
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1381
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1382
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1385
	constantNamed:#'GenericToolbarIconLibrary class down16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1386
	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
  1387
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
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
  1389
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1399
     self edit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1402
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1403
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1404
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1405
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1406
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1407
	constantNamed:#'GenericToolbarIconLibrary class edit16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1408
	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
  1409
@@@@@@@@@@@@@@@@@@@@@@@@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
  1410
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
  1411
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
  1412
@@@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
  1413
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1415
editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1416
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1417
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1418
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1419
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1420
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1421
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1422
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1423
     self editcopy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1424
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1425
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1426
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1427
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1431
	constantNamed:#'GenericToolbarIconLibrary class editcopy16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1432
	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
  1433
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
  1434
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
  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
editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1438
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1439
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1440
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1441
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
     self editcut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1453
	constantNamed:#'GenericToolbarIconLibrary class editcut16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1454
	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
  1455
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
     self editpaste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1473
	constantNamed:#'GenericToolbarIconLibrary class editpaste16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1474
	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
  1475
@@@@@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
  1476
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
  1477
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1485
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1486
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
     self edittrash16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1494
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1495
	constantNamed:#'GenericToolbarIconLibrary class edittrash16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1496
	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
  1497
@@@@@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
  1498
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
  1499
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
erase16x16Icon
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1502
    <resource: #programImage>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1503
4040
01e4930b262f changed: #erase16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4012
diff changeset
  1504
    ^ self erase16x16Icon2
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1505
!
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1506
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1507
erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1508
    "This resource specification was automatically generated
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1509
     by the ImageEditor of ST/X."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1510
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1511
    "Do not manually edit this!! If it is corrupted,
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1512
     the ImageEditor may not be able to read the specification."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1513
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1514
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1515
     self erase16x16Icon1 inspect
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1516
     ImageEditor openOnClass:self andSelector:#erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1517
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1518
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1519
    <resource: #image>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1520
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1521
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1522
	constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1523
	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
  1524
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
     self erase16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1545
	constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1546
	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
  1547
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  1548
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
  1549
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1551
exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1552
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1559
     self exec16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1567
	constantNamed:#'GenericToolbarIconLibrary class exec16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1568
	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
  1569
@@@@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
  1570
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
  1571
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1575
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1577
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
     self exit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1588
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1589
	constantNamed:#'GenericToolbarIconLibrary class exit16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1590
	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
  1591
@@@@@@@@@@@@@@@@@@@@@@@@@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
  1592
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
  1593
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1594
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1595
fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1596
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1597
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1598
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1599
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1600
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1601
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1602
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1603
     self fileNew16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1604
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1608
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1609
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1610
	constantNamed:#'GenericToolbarIconLibrary class fileNew16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1611
	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
  1612
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1613
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1617
fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1622
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
     self fileOpen16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1630
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1631
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1632
	constantNamed:#'GenericToolbarIconLibrary class fileOpen16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1633
	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
  1634
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1635
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1636
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1637
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1638
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1639
fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1640
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1641
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1644
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1646
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1647
     self fileSave16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1648
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1651
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1653
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1654
	constantNamed:#'GenericToolbarIconLibrary class fileSave16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1655
	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
  1656
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1658
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1659
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1660
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1661
fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1662
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1669
     self fileclose16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1670
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1671
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1672
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1677
	constantNamed:#'GenericToolbarIconLibrary class fileclose16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1678
	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
  1679
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1680
@"@@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
  1681
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1682
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1683
finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1684
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1685
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1686
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1687
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1688
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1690
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
     self finish16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1696
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1699
	constantNamed:#'GenericToolbarIconLibrary class finish16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1700
	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
  1701
@@@@@@@@@@@@@@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
  1702
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
  1703
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
     self flagRed16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1714
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1716
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1717
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1718
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1720
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1721
	constantNamed:#'GenericToolbarIconLibrary class flagRed16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1722
	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
  1723
@@@@@@@@@@@@@@@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
  1724
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
  1725
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1726
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1727
formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1728
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1729
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1730
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1731
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1732
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1734
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1735
     self formatCode16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1736
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1737
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1738
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1739
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1740
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1741
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1742
	constantNamed:#'GenericToolbarIconLibrary class formatCode16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1743
	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
  1744
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1745
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1746
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1747
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1748
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1749
forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1750
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1751
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1752
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1753
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1754
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1756
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1757
     self forward16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1758
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1759
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1760
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1761
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1762
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1763
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1764
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1765
	constantNamed:#'GenericToolbarIconLibrary class forward16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1766
	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
  1767
@@@@@@@@@@@@@@@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
  1768
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
  1769
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1770
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1771
goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1772
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1773
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1774
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1775
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1776
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1777
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1778
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1779
     self goto16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1780
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1781
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1782
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1783
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1784
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1785
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1786
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1787
	constantNamed:#'GenericToolbarIconLibrary class goto16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1788
	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
  1789
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1790
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1791
grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1792
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1793
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1794
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1795
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1796
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1797
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1798
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1799
     self grid16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1800
     ImageEditor openOnClass:self andSelector:#grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1801
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1802
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1803
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1804
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1805
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1806
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1807
	constantNamed:'GenericToolbarIconLibrary class grid16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1808
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1809
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
  1810
&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
  1811
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1812
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1813
gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1814
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1815
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1816
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1817
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1818
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1819
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1820
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1821
     self gridAlign16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1822
     ImageEditor openOnClass:self andSelector:#gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1823
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1824
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1825
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1826
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1827
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1828
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1829
	constantNamed:'GenericToolbarIconLibrary class gridAlign16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1830
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1831
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
  1832
&$]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
  1833
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1834
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1835
history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1836
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1837
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1838
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1839
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1840
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1841
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1842
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1843
     self history16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1844
     ImageEditor openOnClass:self andSelector:#history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1845
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1846
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1847
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1848
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1849
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1850
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1851
	constantNamed:#'GenericToolbarIconLibrary class history16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1852
	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
  1853
@@@@@@@@@@@ADQDQD@@@@@DQDQDP@@@@@QDQDQ@@@@@ADQDQDA@@@@DQDQDPD@@@@@@@@@@P@@@@@QDQDQ@P@@@ADQDQDA@@@@@@@@@@D@@@@@DQDQDPD@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1854
@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
  1855
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1856
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1857
idea16x16Icon
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 idea16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1866
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1867
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1868
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1870
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1871
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1872
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1873
	constantNamed:#'GenericToolbarIconLibrary class idea16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1874
	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
  1875
@@@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
  1876
@"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
  1877
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1878
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1879
indent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  1880
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1881
    ^ self indent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1882
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1883
    "Modified: / 06-04-2011 / 18:37:52 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1884
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1885
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1886
indent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1887
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1888
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1889
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1890
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1891
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1892
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1893
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1894
     self indent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1895
     ImageEditor openOnClass:self andSelector:#indent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1896
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1897
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1898
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1899
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1900
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1901
    ^Icon
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1902
        constantNamed:'GenericToolbarIconLibrary class indent16x16Icon1'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1903
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1904
@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
  1905
@@@@@@@@@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
  1906
@@@@@@@@@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]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1907
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1908
    "Created: / 06-04-2011 / 18:37:36 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1909
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1910
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1911
indent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1912
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1913
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1914
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1915
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1916
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1917
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1918
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1919
     self indent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1920
     ImageEditor openOnClass:self andSelector:#indent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1921
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1922
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1923
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1924
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1925
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1926
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1927
        constantNamed:'GenericToolbarIconLibrary class indent16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1928
        ifAbsentPut:[(Depth24Image new) width: 16; height: 16; photometric:(#rgb); bitsPerSample:(#[8 8 8]); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1929
:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1930
;^74;^74;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5<OC6<OC6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1931
@@@@@@@@@@@@</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7<?O8<?O8<?O8<?O8<?O8<?O8<?O8<?O8@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1932
@@@@@@@@@@@@@@@@@@@@=_W9=_W9=_W9=_W9=_W9B&B/=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=?_:=?_:=?_:=?_:BVB/@EN(=?_:=?_:
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1933
@@@@@@@@@@@@@@@@@@@@@@@@@@@@>O#;>O#;[*CNRX#BI7N8BVB/@EN(@EN(>O#;>O#;>O#;>O#;>O#;>O#;>O#;>O#;>O#;>/+<>/+<>/+<>/+<BVF/@EN(
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1934
>/+<>/+<@@@@@@@@@@@@@@@@@@@@@@@@@@@@?O3=?O3=?O3=?O3=?O3=BVF.?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?_7>?_7>?_7>?_7>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1935
?_7>?_7>?_7>?_7>@@@@@@@@@@@@@@@@@@@@@@@@@@@@???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>????????
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1936
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@????????????????????????????????????????????????????????????????????
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  1937
????????????????????????????????????????????????????????????????') ; yourself]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1938
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  1939
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1945
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1946
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
     self leftAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1949
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1950
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1951
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1952
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1953
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1954
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1955
	constantNamed:#'GenericToolbarIconLibrary class leftAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1956
	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
  1957
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1958
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1959
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1960
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1961
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1962
leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1963
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1964
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1965
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1966
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1967
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1968
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1969
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1970
     self leftDown16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1971
     ImageEditor openOnClass:self andSelector:#leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1972
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1973
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1974
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1975
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1976
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1977
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1978
	constantNamed:#'GenericToolbarIconLibrary class leftDown16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1979
	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
  1980
@@@@@@@@@@@@@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
  1981
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
  1982
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1983
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1984
lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1985
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1986
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1987
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1988
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1989
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1991
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1992
     self lock16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1993
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1994
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1995
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1999
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2000
	constantNamed:#'GenericToolbarIconLibrary class lock16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2001
	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
  2002
@@@@]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
  2003
,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
  2004
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2005
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2006
palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2007
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2008
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2009
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2010
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2011
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2012
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2013
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2014
     self palette16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2015
     ImageEditor openOnClass:self andSelector:#palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2016
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2017
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2018
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2019
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2020
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2021
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2022
	constantNamed:#'GenericToolbarIconLibrary class palette16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2023
	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
  2024
@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
  2025
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
  2026
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
  2027
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2028
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2029
paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2030
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2031
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2032
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2037
     self paste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2038
     ImageEditor openOnClass:self andSelector:#paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2039
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2040
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2041
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2042
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2044
	constantNamed:#'GenericToolbarIconLibrary class paste16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2045
	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
  2046
@@@@@@@@@@@@@@@@@@@@@@@@@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
  2047
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2048
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2049
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2050
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2052
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2053
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2054
pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2055
    "This resource specification was automatically generated
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2056
     by the ImageEditor of ST/X."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2057
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2058
    "Do not manually edit this!! If it is corrupted,
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2059
     the ImageEditor may not be able to read the specification."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2060
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2061
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2062
     self pipette16x16Icon inspect
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2063
     ImageEditor openOnClass:self andSelector:#pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2064
     Icon flushCachedIcons
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2065
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2066
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2067
    <resource: #image>
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2068
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2069
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2070
	constantNamed:#'GenericToolbarIconLibrary class pipette16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2071
	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
  2072
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
  2073
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
  2074
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
  2075
!
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2076
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2077
printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2078
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2079
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2080
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2081
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2082
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2083
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2084
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2085
     self printIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2086
     ImageEditor openOnClass:self andSelector:#printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2087
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2088
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2089
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2090
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2091
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2092
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2093
	constantNamed:'GenericToolbarIconLibrary class printIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2094
	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
  2095
@@@@@@@@@@@@@@@@@@@@@@@@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
  2096
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
  2097
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
  2098
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2099
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2106
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2107
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2108
     self redo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2109
     ImageEditor openOnClass:self andSelector:#redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2110
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2111
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2113
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2114
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2115
	constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2116
	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
  2117
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2118
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2119
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2120
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2122
redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2123
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2124
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2125
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2126
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2127
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2128
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2129
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2130
     self redo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2131
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2132
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2133
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2135
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2137
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2138
	constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2139
	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
  2140
@@@@@@@@@@@@@@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
  2141
@@@@@@@@@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
  2142
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2143
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2146
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2149
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2151
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2152
     self reload16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2153
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2157
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2158
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2159
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2160
	constantNamed:#'GenericToolbarIconLibrary class reload16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2161
	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
  2162
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2163
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2164
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2165
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2166
repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2167
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2168
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2169
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2170
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2171
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2172
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2173
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2174
     self repositoryCVSIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2175
     ImageEditor openOnClass:self andSelector:#repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2176
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2177
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2178
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2179
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2180
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2181
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2182
	constantNamed:'GenericToolbarIconLibrary class repositoryCVSIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2183
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2184
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
  2185
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
  2186
@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
  2187
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2188
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2189
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2190
repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2191
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2192
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2193
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2194
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2195
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2196
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2197
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2198
     self repositoryCheckIn inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2199
     ImageEditor openOnClass:self andSelector:#repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2200
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2201
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2202
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2203
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2204
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2205
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2206
	constantNamed:'GenericToolbarIconLibrary class repositoryCheckIn'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2207
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2208
@@@@@@@@@@@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
  2209
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
  2210
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
  2211
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2212
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2213
repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2214
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2215
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2216
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2217
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2218
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2219
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2220
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2221
     self repositoryCheckOut inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2222
     ImageEditor openOnClass:self andSelector:#repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2223
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2224
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2225
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2226
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2227
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2228
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2229
	constantNamed:'GenericToolbarIconLibrary class repositoryCheckOut'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2230
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2231
@@@@@@@@@@@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
  2232
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
  2233
@ @@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
  2234
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2235
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2236
repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2237
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2238
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2239
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2240
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2241
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2242
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2243
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2244
     self repositoryLog inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2245
     ImageEditor openOnClass:self andSelector:#repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2246
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2247
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2248
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2249
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2250
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2251
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2252
	constantNamed:'GenericToolbarIconLibrary class repositoryLog'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2253
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2254
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@4E@@@@@@@@@@@@@@@@@@DLF @@@@@@@@@@@@@@@A0A@P0E@@@@@@@@@@@@@@@WAP4AB0@C
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2255
@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
  2256
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
  2257
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2258
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2259
repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2260
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2261
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2262
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2263
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2264
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2265
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2266
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2267
     self repositorySVNIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2268
     ImageEditor openOnClass:self andSelector:#repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2269
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2270
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2271
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2272
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2273
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2274
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2275
	constantNamed:'GenericToolbarIconLibrary class repositorySVNIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2276
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2277
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
  2278
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
  2279
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
  2280
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2281
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2282
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2283
repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2284
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2285
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2286
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2287
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2288
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2289
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2290
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2291
     self repositoryTag inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2292
     ImageEditor openOnClass:self andSelector:#repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2293
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2294
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2295
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2296
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2297
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2298
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2299
	constantNamed:'GenericToolbarIconLibrary class repositoryTag'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2300
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2301
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH"H"H"@@@JL3L3L3N@@BL3L3L3L8@KJVL3L3L3 K/NT3L3L3N@@BL3L0LC@8@@43L3L3L3 @@ML3L3L3N@@@
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2302
@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
  2303
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2304
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2305
repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2306
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2307
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2308
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2309
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2310
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2311
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2312
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2313
     self repositoryVersions inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2314
     ImageEditor openOnClass:self andSelector:#repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2315
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2316
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2317
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2318
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2319
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2320
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2321
	constantNamed:'GenericToolbarIconLibrary class repositoryVersions'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2322
	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
  2323
@@@@@@@@@@@@@@@@@@@@@@@@@@@#FA(XH0@@@@@@@@@@@@@JABDNA@PJ@@@@@@@@@@@#ABD[HPPDG"L@@@@@@@@@FBDQC1XOB!!8X@@@@@@@@@A(\B08NABD^
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  2324
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
  2325
@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
  2326
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2327
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2328
rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2329
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2330
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2331
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2332
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2333
     the ImageEditor may not be able to read the specification."
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
     self rightAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2337
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2338
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2339
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2340
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2341
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2342
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2343
	constantNamed:#'GenericToolbarIconLibrary class rightAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2344
	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
  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
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2348
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2349
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2350
run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2351
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2352
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2354
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2355
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2357
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2358
     self run16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2359
     ImageEditor openOnClass:self andSelector:#run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2360
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2361
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2362
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2363
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2364
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2365
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2366
	constantNamed:#'GenericToolbarIconLibrary class run16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2367
	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
  2368
@@@@@@@@@@@@@@@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
  2369
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
  2370
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2371
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2372
search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2373
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2374
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2375
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2376
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2377
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2378
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2379
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2380
     self search16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2381
     ImageEditor openOnClass:self andSelector:#search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2382
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2383
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2384
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2385
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2386
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2387
	constantNamed:#'GenericToolbarIconLibrary class search16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2388
	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
  2389
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2390
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2391
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2392
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2393
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2394
searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2395
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2396
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2397
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2398
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2399
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2400
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2401
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2402
     self searchNext16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2403
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2404
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2405
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2406
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2407
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2408
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2409
	constantNamed:#'GenericToolbarIconLibrary class searchNext16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2410
	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
  2411
@@@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
  2412
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2413
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2414
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2415
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2416
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2417
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2418
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2419
searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2420
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2421
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2422
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2423
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2424
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2425
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2426
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2427
     self searchPrev16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2428
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2429
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2430
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2431
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2432
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2433
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2434
	constantNamed:#'GenericToolbarIconLibrary class searchPrev16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2435
	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
  2436
@@@@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
  2437
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2438
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2439
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2440
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2441
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2442
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2443
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2444
snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2445
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2446
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2448
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2449
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2450
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2451
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2452
     self snapshot16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2453
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2454
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2455
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2456
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2457
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2458
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2459
	constantNamed:#'GenericToolbarIconLibrary class snapshot16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2460
	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
  2461
@@@@@@@@@@@@@@@@@@@@@@@@@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
  2462
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2463
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2464
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2465
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2466
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2467
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2468
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2469
sortByLineNumber16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2470
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2471
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2472
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2473
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2474
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2475
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2476
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2477
     self sortByLineNumber16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2478
     ImageEditor openOnClass:self andSelector:#sortByLineNumber16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2479
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2480
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2481
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2482
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2483
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2484
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2485
        constantNamed:'XPToolbarIconLibrary class sortByLineNumber16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2486
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2487
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0<C@@@@@@@@@@@@@@@@@@LP@0@@@@@@@@LE@@LE@@@CA@L@@@@@@@@CAP@CAP@@@0TC@@@@@@@C
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2488
APLCAPL@@@LE@0@CAPTEAPTEAPTEAP@CAPL@@@LC@0T@@0TC@0L@@0TC@@@@@@LE@@LE@@@@@@LE@0@CAPTEAPTEAPTEAP@CAPL@@@LCAPLCAPLC@0L@@0TC
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2489
@@@CAP@CAP@@@@@@APDE@PT@@0T@@0T@@@@@@ADEAPTQ@@@@@@@@@@@@@@@@DPTQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[159 191 191 63 63 95 63 63 159 191 191 191 0 1 0 0 0 0 191 159 159 127 63 127 255 255 255 159 63 127 63 127 191 223 191 191 159 95 127 63 95 191 127 159 159 1 1 3 3 0 2 159 159 159]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G@@\CY0M''A>]?=377CX]?=3?7M >6C8@G@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2490
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2491
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2492
sortByName16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2493
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2494
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2495
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2496
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2497
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2498
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2499
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2500
     self sortByName16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2501
     ImageEditor openOnClass:self andSelector:#sortByName16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2502
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2503
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2504
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2505
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2506
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2507
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2508
        constantNamed:'XPToolbarIconLibrary class sortByName16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2509
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2510
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8MCP8@@@@@@@@@@0<C@@@MC @MC @@@@@@@@LP@0@@@@@@CP(@@@@@@@@CA@L@@AHMB 4J@@@@@@@@@0TC@@8MC @M
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2511
B @@@@@@@@LE@0@NCP@@CP(@@@@@@@@CAPL@@@(MCP8BB @@@@@@@0TC@@@@@@@@@@@@@@@@@@LE@0@@@@@@@@\GA0\GA0@CAPL@@@@@@@@IA @KA00@@0TC
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2512
@@@@@@@@A @KA00@APDE@PT@@@@@@@@KA00@@ADEAPTQ@@@@@@@KA00@@@X@DPTQ@@@@@@@@C@\@@@XI@@@@@@@@@@@@@@\GA0\GA0@a') ; colorMapFromArray:#[159 191 191 63 63 95 63 63 159 191 191 191 0 1 0 0 0 0 191 159 159 127 63 127 255 255 255 159 63 127 63 127 191 223 191 191 159 95 127 63 95 191 127 159 159 1 1 3 3 0 2 159 159 159 63 159 191]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@C8GM \FA78G] ].A7<G@@\C=0M7@.>A38NW@3@C<b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2513
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2514
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2515
start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2516
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2517
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2519
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2520
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2521
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2522
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2523
     self start16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2524
     ImageEditor openOnClass:self andSelector:#start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2525
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2526
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2527
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2528
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2529
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2530
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2531
	constantNamed:#'GenericToolbarIconLibrary class start16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2532
	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
  2533
@@@@@@@@@@@@@@@@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
  2534
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
  2535
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2536
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2537
stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2538
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2539
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2540
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2541
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2542
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2543
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2544
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2545
     self stop16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2546
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2547
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2548
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2549
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2550
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2552
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2553
	constantNamed:#'GenericToolbarIconLibrary class stop16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2554
	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
  2555
@@@"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
  2556
@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
  2557
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2558
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2559
top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2560
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2561
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2563
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2564
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2566
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2567
     self top16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2568
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2569
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2570
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2571
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2572
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2573
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2574
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2575
	constantNamed:#'GenericToolbarIconLibrary class top16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2576
	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
  2577
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
  2578
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
  2579
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2580
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2581
undent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  2582
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2583
    ^ self undent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2584
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2585
    "Modified: / 06-04-2011 / 18:38:05 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2586
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2587
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2588
undent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2589
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2590
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2591
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2592
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2593
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2594
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2595
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2596
     self undent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2597
     ImageEditor openOnClass:self andSelector:#undent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2598
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2599
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2600
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2601
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2602
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2603
    ^Icon
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2604
        constantNamed:'GenericToolbarIconLibrary class undent16x16Icon1'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2605
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2606
@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
  2607
@@@@@@@@@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
  2608
@@@@@@@@@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]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2609
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2610
    "Created: / 06-04-2011 / 18:37:57 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2611
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2612
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2613
undent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2614
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2615
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2616
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2617
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2618
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2619
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2620
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2621
     self undent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2622
     ImageEditor openOnClass:self andSelector:#undent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2623
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2624
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2625
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2626
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2627
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2628
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2629
        constantNamed:'GenericToolbarIconLibrary class undent16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2630
        ifAbsentPut:[(Depth24Image new) width: 16; height: 16; photometric:(#rgb); bitsPerSample:(#[8 8 8]); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2631
:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3:>/3;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74;^74
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2632
;^74;^74;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5;.;5<OC6<OC6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2633
@@@@@@@@@@@@</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7</K7<?O8<?O8<?O8<?O8<?O8<?O8<?O8<?O8@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2634
@@@@@@@@@@@@@@@@@@@@=_W9=_W9=_W9=_W9H&:5=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=_W9=?_:=?_:MW.;H&:6=?_:=?_:=?_:=?_:
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2635
@@@@@@@@@@@@@@@@@@@@@@@@@@@@>O#;>O#;RX#BM''.<H&:5C6N1@5&,@EN(>O#;>O#;>O#;>O#;>O#;>O#;>O#;>O#;>O#;>/+<>/+<M''.<H&:6>/+<>/+<
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2636
>/+<>/+<@@@@@@@@@@@@@@@@@@@@@@@@@@@@?O3=?O3=?O3=?O3=HV:6?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?O3=?_7>?_7>?_7>?_7>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2637
?_7>?_7>?_7>?_7>@@@@@@@@@@@@@@@@@@@@@@@@@@@@???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>????????
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2638
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@????????????????????????????????????????????????????????????????????
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2639
????????????????????????????????????????????????????????????????') ; yourself]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2640
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2641
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2642
undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2643
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2644
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2646
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2647
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2648
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
     self undo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
     ImageEditor openOnClass:self andSelector:#undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2653
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2654
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2655
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2656
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2657
	constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2658
	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
  2659
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2660
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2661
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2662
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2663
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2664
undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2665
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2666
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2668
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2669
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2670
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2671
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2672
     self undo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2673
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2674
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2675
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2676
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2677
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2678
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2679
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2680
	constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2681
	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
  2682
@@@@@@@@@@@@@@@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
  2683
@@@@@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
  2684
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2685
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2686
up16x16Icon
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2687
    <resource: #programImage>
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2688
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2689
    ^ self up16x16Icon2
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2690
!
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  2691
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2692
up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2693
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2694
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2695
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2696
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2697
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2698
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2699
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2700
     self up16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2701
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2702
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2703
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2705
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2706
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2707
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2708
	constantNamed:#'GenericToolbarIconLibrary class up16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2709
	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
  2710
@@@@@@@@@@@@@@@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
  2711
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
  2712
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2713
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2714
upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2715
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2716
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2717
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2718
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2719
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2720
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2721
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2722
     self upRight16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2723
     ImageEditor openOnClass:self andSelector:#upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2724
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2725
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2726
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2727
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2728
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2729
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2730
	constantNamed:#'GenericToolbarIconLibrary class upRight16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2731
	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
  2732
@@@@@@@@@@@@@@@@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
  2733
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
  2734
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2735
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2736
viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2737
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2738
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2739
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2740
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2741
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2742
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2743
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2744
     self viewDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2745
     ImageEditor openOnClass:self andSelector:#viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2746
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2747
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2748
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2749
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2750
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2751
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2752
	constantNamed:#'GenericToolbarIconLibrary class viewDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2753
	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
  2754
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2755
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2756
viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2757
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2758
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2759
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2760
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2761
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2762
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2763
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2764
     self viewNoDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2765
     ImageEditor openOnClass:self andSelector:#viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2766
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2767
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2768
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2769
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2770
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  2771
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2772
	constantNamed:#'GenericToolbarIconLibrary class viewNoDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2773
	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]
4200
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2774
!
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2775
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2776
viewTimeDetails16x16Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2777
    "This resource specification was automatically generated
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2778
     by the ImageEditor of ST/X."
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2779
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2780
    "Do not manually edit this!! If it is corrupted,
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2781
     the ImageEditor may not be able to read the specification."
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2782
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2783
    "
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2784
     self viewTimeDetails16x16Icon inspect
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2785
     ImageEditor openOnClass:self andSelector:#viewTimeDetails16x16Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2786
     Icon flushCachedIcons
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2787
    "
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2788
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2789
    <resource: #image>
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2790
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2791
    ^Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2792
        constantNamed:'GenericToolbarIconLibrary class viewTimeDetails16x16Icon'
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  2793
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@]0A7@O^@<HC? G<@_0@\@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@\@G<@?8C? _?A?<G?0O>@?8A?@A0@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2794
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2796
!GenericToolbarIconLibrary class methodsFor:'image specs-20x20'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2797
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2798
browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2799
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2800
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2801
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2802
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2803
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2804
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2805
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2806
     self browseIt20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2807
     ImageEditor openOnClass:self andSelector:#browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2808
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2809
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2810
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2811
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2812
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2813
    ^Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2814
	constantNamed:'GenericToolbarIconLibrary class browseIt20x20Icon'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2815
	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
  2816
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@M&Y&Y D@@@@@@CY&Y&@P@@@@@@ATQDPAD@@@@@@@@@@@DS@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2817
@@@@@QL1D @@@@@@@AD3DR@@@@@@@@@@@QH@@@@@@@@@@@D L3L5@@@@@@@BA7]7]@@@@@@@HDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2818
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2819
@@@@@@@@@@P@_?0@_? @_? @_? @_? @_?<@@?8@A?0@C?? @_? @_? @_? @_? @0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2820
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2821
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2822
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2823
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2824
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  2825
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2826
copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2827
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2828
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2829
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2830
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2831
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2832
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2833
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2834
     self copy20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2835
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2836
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2837
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2838
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2839
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2840
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2841
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2842
	constantNamed:#'GenericToolbarIconLibrary class copy20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2843
	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
  2844
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2845
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2846
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
  2847
@@@@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
  2848
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2849
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2850
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2851
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2852
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2853
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2854
cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2855
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2856
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2857
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2858
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2859
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2860
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2861
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2862
     self cut20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2863
     ImageEditor openOnClass:self andSelector:#cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2864
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2865
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2866
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2867
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2868
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2869
	constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2870
	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
  2871
@@@@@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
  2872
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2873
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2874
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2875
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2876
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2877
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2878
cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2879
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2880
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2881
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2882
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2883
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2884
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2885
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2886
     self cut20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2887
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2888
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2889
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2890
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2891
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2893
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2894
	constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2895
	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
  2896
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2897
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2898
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2899
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2900
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2901
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2902
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2903
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2904
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2905
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2906
debugIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2907
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2908
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2909
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2910
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2911
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2912
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2913
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2914
     self debugIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2915
     ImageEditor openOnClass:self andSelector:#debugIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2916
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2917
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2918
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2919
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2920
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2921
	constantNamed:#'GenericToolbarIconLibrary class debugIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2922
	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
  2923
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2924
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2925
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2926
@@@@@@@@@@@@@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
  2927
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2928
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2929
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2930
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2931
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2932
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2933
doIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2934
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2935
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2937
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2938
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2939
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2940
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2941
     self doIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2942
     ImageEditor openOnClass:self andSelector:#doIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2943
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2944
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2945
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2946
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2947
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2948
	constantNamed:#'GenericToolbarIconLibrary class doIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2949
	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
  2950
@@@@@@@@@@@@@@@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
  2951
@@@@@@@@@@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
  2952
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2953
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2954
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2955
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2956
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2957
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2958
documents20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2959
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2960
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2961
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2962
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2963
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2964
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2965
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2966
     self documents20x20Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2967
     ImageEditor openOnClass:self andSelector:#documents20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2968
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2969
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2970
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2971
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2972
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2973
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2974
        constantNamed:'GenericToolbarIconLibrary class documents20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2975
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2976
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)FG@$J[!!:WWX]PGP@@@@@@@@@@QAA"MR]%PF!!<E39Q@@@@@@@@@@AXJ7.QO8 F
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2977
%IT1 YP0L0@@@@@@@F1''E%IBM8P OC0<OC2S@@@@@@@@ B):@"53$EVB (JBOF,@@@@@@@@H#PH=K@=Y%RL_HY%$F @@@@@@@B<)J@DDM)AUQ7:CFFQV@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2978
@@@@F7&LN1U^VYUJCE1-YF(@@@@@@@@[^G\@S''JPUXJB (H<PP@@@@@@@E^K@H)MC%&UW5=_W31=@@@@@@@@_1N]XQFE$EVB (JBO@T@@@@@@@@GIX$8]I!!Y
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2979
%U=_W5<<U@@@@@@@@B95II-KCYAU (JB #2O@@@@@@@@K&AL&"IHL ,RD#$9I!!$@@@@@@@BRQYY0RSQ#S0NNT6$Y[0@@@@@@@I1[P6Y6!!''D:@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2980
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O@@@OG?8OG?8OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG>@O@@@O@@@O') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2981
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  2982
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2983
dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2984
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2985
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2987
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2988
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2989
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2990
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2991
     self dos20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2992
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2993
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2994
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2995
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2996
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2997
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2998
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2999
	constantNamed:#'GenericToolbarIconLibrary class dos20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3000
	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
  3001
@@@@@@@@@@@@@@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
  3002
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3003
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3004
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3006
dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3007
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3008
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3009
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3010
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3011
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3012
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3013
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3014
     self dosWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3015
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3016
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3017
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3019
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3020
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3021
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3022
	constantNamed:#'GenericToolbarIconLibrary class dosWithoutText20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3023
	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
  3024
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3025
@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
  3026
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3027
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3028
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3029
downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3030
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3031
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3032
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3033
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3034
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3035
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3036
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3037
     self downArrow20x20Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3038
     ImageEditor openOnClass:self andSelector:#downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3039
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3040
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3041
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3042
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3043
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3044
    ^Icon
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3045
        constantNamed:'GenericToolbarIconLibrary class downArrow20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3046
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3047
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@@@@@H"H"H"H"@"H"HBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3048
H@@@@!!DQH@@@@"HBDQDQDQDQHBH"HBDQDQDQD H"H"HBDQDQDR@"H"H"HBDQDQHBH"H"H"HBDQD H"H"H"H"HBDR@"H"H"H"H"HBHBH"H"H"H"H"H@H"H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3049
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb') ; 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]
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3050
!
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3051
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3052
download20x20Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3053
    "This resource specification was automatically generated
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3054
     by the ImageEditor of ST/X."
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3055
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3056
    "Do not manually edit this!! If it is corrupted,
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3057
     the ImageEditor may not be able to read the specification."
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3058
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3059
    "
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3060
     self download20x20Icon inspect
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3061
     ImageEditor openOnClass:self andSelector:#download20x20Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3062
     Icon flushCachedIcons
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3063
    "
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3064
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3065
    <resource: #image>
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3066
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3067
    ^Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3068
        constantNamed:'GenericToolbarIconLibrary class download20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3069
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3070
H"H"H"H"H"H"H"H"H @@@@@"H"H"H"HBH"H H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H @@@BDQD @@@B
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3071
H@HQDQDQDQD @"H@HQDQDQDR@BH"H@HQDQDQH@H"H"H@HQDQD @"H"H"H@HQDR@BH"H"H"H@HQH@H"H"@"H"H@H @"H"H@H"H"H@@BH"H"@BH"H"H@H"H"H 
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3072
@"H"H"H"H"H"H@@@@@@@@@@@@@@b') ; 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:'@@@@@?0@@?0E@?0@@?0G@?0@@?0B@?0@_?? _?? O??MG?>@C?<@A?8C@?0H0_ 00O@00F@3???1???0') ; yourself); yourself]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3073
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3074
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3075
edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3076
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3077
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3078
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3079
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3080
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3081
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3082
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3083
     self edit20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3084
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3085
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3086
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3087
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3088
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3090
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3091
	constantNamed:#'GenericToolbarIconLibrary class edit20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3092
	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
  3093
@ 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
  3094
@ 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
  3095
@ 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
  3096
@@@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
  3097
@ 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
  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
empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3101
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3102
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3104
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3105
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3106
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3107
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3108
     self empty1x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3109
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3110
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3111
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3112
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3113
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3115
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3116
	constantNamed:#'GenericToolbarIconLibrary class empty1x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3117
	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
  3118
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3119
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3120
erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3121
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3122
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3123
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3124
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3125
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3126
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3127
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3128
     self erase20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3129
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3130
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3131
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3132
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3133
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3135
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3136
	constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3137
	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
  3138
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3139
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3140
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3141
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3142
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3143
erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3144
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3145
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3146
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3147
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3148
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3149
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3150
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3151
     self erase20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3152
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3153
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3154
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3155
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3157
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3158
	constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3159
	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
  3160
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3161
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3162
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3163
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3164
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3165
executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3166
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3167
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3168
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3169
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3170
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3171
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3172
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3173
     self executeMethod20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3174
     ImageEditor openOnClass:self andSelector:#executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3175
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3176
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3177
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3178
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3179
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3180
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3181
	constantNamed:'GenericToolbarIconLibrary class executeMethod20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3182
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3183
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3184
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3185
@@@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
  3186
@@HB@ HB@ H@@@@@@@@@@@@@A0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3187
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3188
@@@@@@@@@@P@@@0@@A @_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3189
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3190
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3191
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3192
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3193
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3194
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3195
fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3196
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3197
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3198
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3199
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3200
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3201
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3202
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3203
     self fileIn20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3204
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3205
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3206
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3207
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3208
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3209
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3210
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3211
	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
  3212
@@@@@@@@@@@@@@@@@@@@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
  3213
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3214
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  3215
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3217
fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3218
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3219
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3221
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3222
     the ImageEditor may not be able to read the specification."
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
     self fileIn20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3226
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3227
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3228
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3229
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3230
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3231
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3232
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3233
	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
  3234
@@@@@@@@@@@@@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
  3235
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3236
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  3237
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3238
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3239
fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3240
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3241
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3242
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3243
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3244
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3245
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3247
     self fileIn20x20Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3248
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3249
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3250
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3251
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3252
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3253
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3254
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3255
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon3'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3256
	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
  3257
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3258
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
  3259
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  3260
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3261
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3262
fileNew20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3263
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3264
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3266
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3267
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3268
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3269
    "
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3270
     self fileNew20x20Icon inspect
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3271
     ImageEditor openOnClass:self andSelector:#fileNew20x20Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3272
     Icon flushCachedIcons
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3273
    "
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3274
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3275
    <resource: #image>
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3276
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3277
    ^Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3278
        constantNamed:'GenericToolbarIconLibrary class fileNew20x20Icon'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3279
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3280
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y%Y&U&YVY&Y&Y&Y%Y%Y%Y&Y&Y!!DQDUYVU&Y&Y&XTQDDEUVY&Y&Y&EDQUUUUUU&Y&Y!!QDPTUUY&Y&Y&XTQDEPTEY&Y&Y&EDQEH%A%Y&
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3281
Y&Y!!QDUDMPY%Y&Y&XTQDP4LFY&Y&Y&EDQCP3A&Y&Y&Y!!QDMCL0Y&Y&Y&XTP4L3LFY&Y&Y&ECP3L3A&Y&Y&Y!!MCL3L0Y&Y&Y&XP@@@@@FY&Y&Y&Y&Y&Y&Y&Y&
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3282
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Xb') ; colorMapFromArray:#[0 0 0 64 64 64 168 172 168 168 228 240 248 252 248 255 0 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3283
@@@@@DQ@@BR@A?T@A?8@A??@A?8@A?<@A?:@A?9@A?8@A?8@A?8@A?8@A?8@A?8@A?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3284
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3285
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3286
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3287
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3288
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3289
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3290
fileOpen20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3291
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3292
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3294
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3295
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3296
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3297
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3298
     self fileOpen20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3299
     ImageEditor openOnClass:self andSelector:#fileOpen20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3300
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3302
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3303
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3304
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3305
	constantNamed:#'GenericToolbarIconLibrary class fileOpen20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3306
	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
  3307
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3308
@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
  3309
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3310
@@@@@@@@@@@@@@@@@@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
  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
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3314
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3316
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3317
fileSave20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3318
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3319
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3320
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3324
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3325
     self fileSave20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3326
     ImageEditor openOnClass:self andSelector:#fileSave20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3327
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3328
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3329
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3330
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3331
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3332
	constantNamed:#'GenericToolbarIconLibrary class fileSave20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3333
	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
  3334
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3335
@@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
  3336
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3337
@@@@@@@@@@@@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
  3338
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3339
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3340
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3341
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3342
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3343
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3344
fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3345
    "This resource specification was automatically generated
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3346
     by the ImageEditor of ST/X."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3347
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3348
    "Do not manually edit this!! If it is corrupted,
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3349
     the ImageEditor may not be able to read the specification."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3350
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3351
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3352
     self fitImageSizeToView20x20Icon inspect
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3353
     ImageEditor openOnClass:self andSelector:#fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3354
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3355
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3356
    <resource: #image>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3357
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3358
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3359
	constantNamed:#'GenericToolbarIconLibrary class fitImageSizeToView20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3360
	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
  3361
@@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
  3362
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
  3363
@@@QDQDQDQDA@@@ADQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3364
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3365
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3366
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
  3367
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3368
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3369
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3370
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3371
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3372
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3373
history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3374
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3375
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3376
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3377
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3378
     the ImageEditor may not be able to read the specification."
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
     self history20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3382
     ImageEditor openOnClass:self andSelector:#history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3383
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3384
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3385
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3386
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3387
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3388
	constantNamed:#'GenericToolbarIconLibrary class history20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3389
	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
  3390
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3391
@@@@@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
  3392
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3393
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3394
inspectIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3395
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3396
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3397
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3398
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3399
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3400
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3401
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3402
     self inspectIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3403
     ImageEditor openOnClass:self andSelector:#inspectIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3404
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3405
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3406
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3407
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3408
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3409
	constantNamed:#'GenericToolbarIconLibrary class inspectIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3410
	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
  3411
"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
  3412
"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
  3413
"@"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
  3414
@@@@@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
  3415
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3416
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3417
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3418
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3419
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3420
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3421
inspectLocals20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3422
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3423
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3424
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3425
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3426
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3427
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3428
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3429
     self inspectLocals20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3430
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3431
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3434
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3435
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3436
	constantNamed:#'GenericToolbarIconLibrary class inspectLocals20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3437
	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
  3438
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3439
@&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
  3440
@@@@@@@@@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
  3441
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
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
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3446
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3447
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3448
leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3449
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3450
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3451
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3452
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3453
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3454
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3455
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3456
     self leftArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3457
     ImageEditor openOnClass:self andSelector:#leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3458
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3459
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3460
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3461
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3462
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3463
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3464
	constantNamed:#'GenericToolbarIconLibrary class leftArrow20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3465
	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
  3466
@ 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
  3467
@@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
  3468
@ 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
  3469
@@@@@@@@@@@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
  3470
@ 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
  3471
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3472
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3473
newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3474
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3475
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3476
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3477
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3478
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3479
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3480
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3481
     self newDirectory20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3482
     ImageEditor openOnClass:self andSelector:#newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3483
     Icon flushCachedIcons
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
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3487
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3488
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3489
	constantNamed:#'GenericToolbarIconLibrary class newDirectory20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3490
	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
  3491
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@A@ HB@ HA@@@@@@@@@@@@@@@@@PHB@ HB@ HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3492
@@@@@@@@@@@@@@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
  3493
@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
  3494
@ 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
  3495
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3496
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3497
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3498
paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3499
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3500
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3501
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3502
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3503
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3504
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3505
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3506
     self paste20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3507
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3508
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3509
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3510
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3511
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3513
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3514
	constantNamed:#'GenericToolbarIconLibrary class paste20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3515
	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
  3516
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3517
@@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
  3518
@@@@@@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
  3519
@@@@@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
  3520
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3521
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3523
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3524
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3525
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3526
printIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3527
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3528
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3529
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3530
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3531
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3533
    "
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3534
     self printIt20x20Icon inspect
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3535
     ImageEditor openOnClass:self andSelector:#printIt20x20Icon
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3536
     Icon flushCachedIcons
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3537
    "
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3538
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3539
    <resource: #image>
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3540
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3541
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3542
	constantNamed:'GenericToolbarIconLibrary class printIt20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3543
	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
  3544
@@@@@@@@@@@@@@@@@@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
  3545
@@@@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
  3546
@@@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
  3547
@@@@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3548
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3549
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3550
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3553
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3554
redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3555
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3556
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3557
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3558
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3559
     the ImageEditor may not be able to read the specification."
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
     self redo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3563
     ImageEditor openOnClass:self andSelector:#redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3564
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3566
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3567
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3568
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3569
	constantNamed:#'GenericToolbarIconLibrary class redo20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3570
	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
  3571
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3572
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3573
rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3574
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3575
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3576
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3577
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3578
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3579
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3580
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3581
     self rightArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3582
     ImageEditor openOnClass:self andSelector:#rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3583
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3584
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3585
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3586
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3587
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3588
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3589
	constantNamed:#'GenericToolbarIconLibrary class rightArrow20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3590
	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
  3591
@ 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
  3592
@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
  3593
@ 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
  3594
@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
  3595
@ 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
  3596
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3597
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3598
search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3599
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3600
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3601
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3602
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3603
     the ImageEditor may not be able to read the specification."
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
     self search20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3607
     ImageEditor openOnClass:self andSelector:#search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3608
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3609
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3610
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3611
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3612
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3613
	constantNamed:#'GenericToolbarIconLibrary class search20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3614
	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
  3615
@@@@@@@@@@@@@@@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
  3616
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3617
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3618
shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3619
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3620
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3623
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3624
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3625
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3626
     self shell20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3627
     ImageEditor openOnClass:self andSelector:#shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3631
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3632
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3633
	constantNamed:#'GenericToolbarIconLibrary class shell20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3634
	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
  3635
@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
  3636
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3637
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3638
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3639
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3640
shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3641
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3642
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3643
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3644
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3645
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3646
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3647
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3648
     self shell20x20WithoutTextIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3649
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3650
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3651
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3653
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3655
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3656
	constantNamed:#'GenericToolbarIconLibrary class shell20x20WithoutTextIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3657
	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
  3658
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3659
@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
  3660
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3661
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3662
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3663
shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3664
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3665
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3666
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3667
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3668
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3669
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3670
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3671
     self shellWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3672
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3673
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3674
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3675
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3676
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3677
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3678
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3679
	constantNamed:#'GenericToolbarIconLibrary class shellWithoutText20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3680
	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
  3681
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3682
@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
  3683
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3684
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3685
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3686
tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3687
    "This resource specification was automatically generated
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3688
     by the ImageEditor of ST/X."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3689
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3690
    "Do not manually edit this!! If it is corrupted,
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3691
     the ImageEditor may not be able to read the specification."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3692
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3693
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3694
     self tableViewWidget20x20 inspect
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3695
     ImageEditor openOnClass:self andSelector:#tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3696
     Icon flushCachedIcons
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3697
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3698
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3699
    <resource: #image>
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3700
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3701
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3702
	constantNamed:'XPToolbarIconLibrary class tableViewWidget20x20'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3703
	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?@@@@@@@@@@@@@@
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3704
@@@@@@@@@@@@@@@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
  3705
!
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3706
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3707
undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3708
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3709
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3710
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3711
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3712
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3714
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3715
     self undo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3716
     ImageEditor openOnClass:self andSelector:#undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3717
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3719
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3721
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3722
	constantNamed:#'GenericToolbarIconLibrary class undo20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3723
	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
  3724
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3725
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3726
upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3727
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3728
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3729
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3730
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3731
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3732
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3733
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3734
     self upArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3735
     ImageEditor openOnClass:self andSelector:#upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3736
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3737
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3738
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3739
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3740
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3741
    ^Icon
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3742
        constantNamed:'GenericToolbarIconLibrary class upArrow20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3743
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3744
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@H"H"H"H"H"H H H"H"H"H"H"@!!D H"H"H"H"HBDQD H"H"H"H HQDQD H"H"H"@!!DQDQD H"H"HBDQDQDQD H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3745
H HQDQDQDQD H"@@@@HQDR@@@@H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H H"H"@"H"H"H"H@@@@@H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3746
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb') ; 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
  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
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3750
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3751
backward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3752
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3753
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3754
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3755
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3756
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3757
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3758
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3759
     self backward3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3760
     ImageEditor openOnClass:self andSelector:#backward3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3761
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3762
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3763
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3764
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3765
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3766
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3767
	constantNamed:#'GenericToolbarIconLibrary class backward22x22_3DIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3768
	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
  3769
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
  3770
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
  3771
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3772
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3773
close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3774
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3775
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3776
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3777
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3778
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3779
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3780
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3781
     self close22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3782
     ImageEditor openOnClass:self andSelector:#close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3783
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3784
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3785
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3786
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3787
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3788
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3789
	constantNamed:#'GenericToolbarIconLibrary class close22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3790
	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
  3791
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3792
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3793
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3794
@@@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
  3795
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3796
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3797
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3798
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3799
copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3800
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3801
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3802
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3803
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3804
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3805
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3806
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3807
     self copy22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3808
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3809
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3810
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3811
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3812
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3813
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3814
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3815
	constantNamed:#'GenericToolbarIconLibrary class copy22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3816
	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
  3817
@@@@@@@@@@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
  3818
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
  3819
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3820
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3821
copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3822
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3823
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3824
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3825
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3826
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3827
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3828
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3829
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3830
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3831
     self copyMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3832
     ImageEditor openOnClass:self andSelector:#copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3833
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3834
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3835
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3836
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3837
	constantNamed:#'GenericToolbarIconLibrary class copyMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3838
	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
  3839
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3840
@@@@@@@@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
  3841
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3842
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3843
currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3844
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3845
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3846
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3847
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3848
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3849
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3850
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3851
     self currentDirectoryIcon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3852
     ImageEditor openOnClass:self andSelector:#currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3853
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3854
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3855
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3856
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3857
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3858
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3859
	constantNamed:#'GenericToolbarIconLibrary class currentDirectoryIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3860
	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
  3861
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQIDP!!DP@@@@@@DQIDQDHQD@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3862
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
  3863
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
  3864
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3865
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3866
cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3867
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3868
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3870
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3871
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3872
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3873
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3874
     self cut22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3875
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3876
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3877
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3878
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3879
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3880
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3881
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3882
	constantNamed:#'GenericToolbarIconLibrary class cut22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3883
	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
  3884
@@@@@@@@@@@@@@@@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
  3885
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
  3886
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
  3887
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3888
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3889
cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3890
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3891
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3893
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3894
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3896
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3897
     self cutMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3898
     ImageEditor openOnClass:self andSelector:#cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3899
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3900
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3901
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3902
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3904
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3905
	constantNamed:#'GenericToolbarIconLibrary class cutMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3906
	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
  3907
@@@@@@@@@@@@@@@@@@@ADP0@@@@L@@@CL3L3CB@@@B0@@@L3L3LL0@@@3@@@@@@@@@KB@@KB@@@QDQDQDL0ACL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3908
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
  3909
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
  3910
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3911
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3912
debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3913
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3914
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3915
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3916
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3917
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3918
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3919
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3920
     self debug22x22Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3921
     ImageEditor openOnClass:self andSelector:#debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3922
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3923
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3924
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3925
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3926
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3927
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3928
	constantNamed:#'GenericToolbarIconLibrary class debug22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3929
	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
  3930
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3931
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ HB@ @@@@@@@@@@@@@@@@@@@ HBAPTEAPTB@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3932
@@@B@ @B@ HEAPTEAPTEAPH@@@@@@@HBAPTE@@HEAPTEAPTEAPTE@ @@@@@B@ TEAP@BAPTEAPTEAPTEAPH@@@@@@@HEAPT@@@@@@@@@@@@@@@@@@@@@@@HB
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3933
APTE@@HBAPTEAPTEAPTE@ @@@@@@@ HB@ @B@ TEAPTEAPTE@ H@@@@@@@@@@@@@@@HBAPTEAPTE@ @@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3934
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3935
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3936
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3937
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3938
debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3939
    "This resource specification was automatically generated
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3940
     by the ImageEditor of ST/X."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3941
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3942
    "Do not manually edit this!! If it is corrupted,
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3943
     the ImageEditor may not be able to read the specification."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3944
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3945
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3946
     self debug22x22IconForBlackBackgound inspect
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3947
     ImageEditor openOnClass:self andSelector:#debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3948
     Icon flushCachedIcons
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3949
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3950
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3951
    <resource: #image>
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3952
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3953
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3954
	constantNamed:'GenericToolbarIconLibrary class debug22x22IconForBlackBackgound'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3955
	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
  3956
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@@@@@FA X@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3957
@@@@@@@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
  3958
@@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
  3959
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
  3960
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
  3961
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  3962
!
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  3963
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3964
delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3965
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3966
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3967
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3968
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3969
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3970
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3971
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3972
     self delete22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3973
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3974
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3975
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3976
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3977
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3978
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3979
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3980
	constantNamed:#'GenericToolbarIconLibrary class delete22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3981
	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
  3982
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3983
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
  3984
@@@@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
  3985
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3986
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3987
displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3988
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3989
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3990
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3991
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3992
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3993
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3994
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3995
     self displayScreen22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3996
     ImageEditor openOnClass:self andSelector:#displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3997
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3998
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3999
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4000
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4001
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4002
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4003
	constantNamed:#'GenericToolbarIconLibrary class displayScreen22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4004
	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
  4005
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4006
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
  4007
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
  4008
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4009
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4010
down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4011
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4012
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4013
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4014
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4015
     the ImageEditor may not be able to read the specification."
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
     self down22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4019
     ImageEditor openOnClass:self andSelector:#down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4020
     Icon flushCachedIcons
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4024
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4025
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4026
	constantNamed:#'GenericToolbarIconLibrary class down22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4027
	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
  4028
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
  4029
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
  4030
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4031
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4032
downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4033
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4034
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4036
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4037
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4038
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4039
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4040
     self downRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4041
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4042
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4043
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4044
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4045
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4046
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4047
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4048
	constantNamed:#'GenericToolbarIconLibrary class downRight22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4049
	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
  4050
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
  4051
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
  4052
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4053
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4054
editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4055
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4056
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4057
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4058
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4059
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4060
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4061
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4062
     self editor22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4063
     ImageEditor openOnClass:self andSelector:#editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4064
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4065
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4066
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4067
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4068
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4069
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4070
	constantNamed:#'GenericToolbarIconLibrary class editor22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4071
	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
  4072
*******************************("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
  4073
!!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
  4074
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
  4075
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4076
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4077
font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4078
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4079
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4080
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4081
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4082
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4083
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4084
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4085
     self font22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4086
     ImageEditor openOnClass:self andSelector:#font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4087
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4088
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4089
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4090
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4091
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4092
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4093
	constantNamed:#'GenericToolbarIconLibrary class font22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4094
	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
  4095
@@@@@@@@@@@@@@@@@@@@@!!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
  4096
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
  4097
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
  4098
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4099
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4100
forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4101
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4102
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4104
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4105
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4106
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4107
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4108
     self forward22x22_3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4109
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4110
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4111
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4112
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4113
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4115
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4116
	constantNamed:#'GenericToolbarIconLibrary class forward22x22_3DIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4117
	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
  4118
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
  4119
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
  4120
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4122
help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4123
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4124
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4125
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4126
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4127
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4128
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4129
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4130
     self help22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4131
     ImageEditor openOnClass:self andSelector:#help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4132
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4133
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4135
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4137
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4138
	constantNamed:#'GenericToolbarIconLibrary class help22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4139
	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
  4140
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4141
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4142
home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4143
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4144
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4145
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4146
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4147
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4148
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4149
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4150
     self home22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4151
     ImageEditor openOnClass:self andSelector:#home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4152
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4153
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4154
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4155
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4156
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4157
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4158
	constantNamed:#'GenericToolbarIconLibrary class home22x22Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4159
	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
  4160
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQH2DQ@@@@@@@@DQH4L!!DP@@@@@@DQH4QCHQD@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4161
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
  4162
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
  4163
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4164
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4165
keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4166
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4167
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4168
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4169
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4170
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4171
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4172
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4173
     self keyboardMapping22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4174
     ImageEditor openOnClass:self andSelector:#keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4175
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4176
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4177
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4178
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4179
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4180
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4181
	constantNamed:#'GenericToolbarIconLibrary class keyboardMapping22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4182
	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
  4183
@@@@@@@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
  4184
@@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
  4185
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4186
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4187
languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4188
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4189
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4190
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4191
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4192
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4193
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4194
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4195
     self languages22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4196
     ImageEditor openOnClass:self andSelector:#languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4197
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4198
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4199
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4200
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4201
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4202
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4203
	constantNamed:'GenericToolbarIconLibrary class languages22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4204
	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
  4205
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B (JB (@@@@@@@@F <O@@@@@@@@@@@ZJB (GA0\GA0(JB VE @@@@@@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4206
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
  4207
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
  4208
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
  4209
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
  4210
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4211
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4212
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4213
left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4214
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4215
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4217
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4218
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4219
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4220
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4221
     self left22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4222
     ImageEditor openOnClass:self andSelector:#left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4223
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4224
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4225
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4226
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4227
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4228
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4229
	constantNamed:#'GenericToolbarIconLibrary class left22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4230
	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
  4231
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4232
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
  4233
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4234
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4235
leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4236
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4237
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4238
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4239
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4240
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4241
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4242
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4243
     self leftDown22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4244
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4245
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4246
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4247
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4248
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4249
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4250
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4251
	constantNamed:#'GenericToolbarIconLibrary class leftDown22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4252
	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
  4253
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
  4254
***)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
  4255
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4256
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4257
load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4258
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4259
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4260
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4261
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4262
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4263
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4264
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4265
     self load22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4266
     ImageEditor openOnClass:self andSelector:#load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4267
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4268
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4269
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4270
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4272
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4273
	constantNamed:#'GenericToolbarIconLibrary class load22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4274
	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
  4275
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
  4276
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
  4277
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4278
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4279
loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4280
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4281
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4282
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4283
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4284
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4285
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4286
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4287
     self loadFromMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4288
     ImageEditor openOnClass:self andSelector:#loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4289
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4290
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4292
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4294
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4295
	constantNamed:#'GenericToolbarIconLibrary class loadFromMethod22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4296
	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
  4297
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4298
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
  4299
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
  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
loadImage22x22Icon
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 loadImage22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4311
     ImageEditor openOnClass:self andSelector:#loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4312
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4313
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4315
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4316
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4317
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4318
	constantNamed:#'GenericToolbarIconLibrary class loadImage22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4319
	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
  4320
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4321
L3L3L3L3L2DQDCMDY''\3L3L3HRDPL4Q&]3L3L3L!!DQDCMU&X 3L3L3HQDPL5VY"CL3L3L!!DQ@3QFY7L3L3L2DQDCMDY''\3L3L3HQDPL5VY"CL3L3L!!DQ@3UY
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4322
&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
  4323
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4324
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4325
make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4326
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4327
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4328
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4329
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4330
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4331
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4332
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4333
     self make22x22Icon1 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4334
     ImageEditor openOnClass:self andSelector:#make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4335
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4336
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4337
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4338
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4339
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4340
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4341
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4342
	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
  4343
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4344
@@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
  4345
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
  4346
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
  4347
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
  4348
@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
  4349
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4350
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4351
make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4352
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4353
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4354
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4355
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4356
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4357
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4358
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4359
     self make22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4360
     ImageEditor openOnClass:self andSelector:#make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4361
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4362
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4363
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4364
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4365
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4366
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4367
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4368
	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
  4369
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4370
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0KC 0KC@@@@@@@@@@@@@@@@@@NC@,NB00LB00KC@0@@@@@@@@@@@@@C 8NC@0NC 0LC 0L@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4371
@@@@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
  4372
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
  4373
CP@NC @MCP@@@@@@@@@@@@@@@@@@@@@@C 8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4374
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4375
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4376
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4377
memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4378
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4379
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4380
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4381
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4382
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4383
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4384
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4385
     self memory22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4386
     ImageEditor openOnClass:self andSelector:#memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4387
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4388
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4389
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4390
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4391
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4392
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4393
	constantNamed:#'GenericToolbarIconLibrary class memory22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4394
	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
  4395
@@@@@@@@@@@@@@@@@@@@@@?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
  4396
<,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
  4397
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
  4398
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4399
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4400
new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4401
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4402
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4403
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4404
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4405
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4406
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4407
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4408
     self new22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4409
     ImageEditor openOnClass:self andSelector:#new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4410
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4411
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4412
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4413
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4415
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4416
	constantNamed:#'GenericToolbarIconLibrary class new22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4417
	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
  4418
@@@@@@@@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
  4419
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
  4420
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4421
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4422
newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4423
    "This resource specification was automatically generated
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4424
     by the ImageEditor of ST/X."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4425
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4426
    "Do not manually edit this!! If it is corrupted,
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4427
     the ImageEditor may not be able to read the specification."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4428
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4429
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4430
     self newMenuItem22x22Icon inspect
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4431
     ImageEditor openOnClass:self andSelector:#newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4432
     Icon flushCachedIcons
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4433
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4434
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4435
    <resource: #image>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4436
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4437
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4438
	constantNamed:#'GenericToolbarIconLibrary class newMenuItem22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4439
	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
  4440
@@@@@@@@@@@@@@@@@@@ADP@@@@@@@@@CL3L3@@@@@@@@@@L3L3L@@@@@@@@@@@@@@@@H@@ @B@@QDQDQDQFAFAJ@@AL3L3L3L3 8N@@@D3L3L3L3L8"B@@@S
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4441
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
  4442
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4443
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4444
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4445
openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4446
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4447
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4448
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4449
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4450
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4451
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4452
    "
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4453
     self openBreakpointBrowser22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4454
     ImageEditor openOnClass:self andSelector:#openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4455
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4456
    "
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4457
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4458
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4459
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4460
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4461
        constantNamed:'GenericToolbarIconLibrary class openBreakpointBrowser22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4462
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4463
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4464
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CDGAP(VF3\@@@@@@@@@@@@@@@@@@@4XMS4>N3@YD4TFA @@@@@@@@@@@A1FP$H@S4=OS1(JQT8F@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4465
@A5BP D_G4=OS4=OL@]NS X@@@@@@CL/P$=O@T=OS4=OS4H0H49NA @@@@@%NT=OS1=OS4=OS4=OL@QNS X@@@@@GS9OS4<_S4=OS4=OS4PI@@@@@@@@@A5D
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4466
S4=OS4=OS4=OS4=DC49NA @@@@@]O!!<_G1<A@PDA@PDAQ@=NA X@@@@@G#YOS4=OS4=OS4=OS4PEA @@@@@@@CH''S4=OG4=OS4=OS4<4C@@@@@@@@@@@DSAO
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4467
S0EOS4=OS4=BC$T@@@@@@@@@@ATQM!!<AG1=OS4=BIB0@@@@@@@AVSTDTBAD(N$IBP#P4IB4@@@@@@@AUT5I@D @@E ,PE2X$K#0@@@@@@@AUUEIIJ"H@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4468
@@@@@@@@@@@@@@@@UEIIJ2D@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 64 64 64 64 64 64 127 127 127 127 127 175 127 128 175 128 0 0 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 160 64 64 160 64 64 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 161 161 165 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 192 192 208 192 239 255 192 240 255 194 194 194 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 217 217 217 223 128 63 223 255 255 239 239 240 239 255 255 240 207 144 255 0 0 255 64 64 255 64 64 255 64 64 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@O? @_?0@??8Q??<O??<C??<C??<O??<S??<C??8C??0A?? A??XO?? _O<@?@@@>@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4469
!
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4470
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4471
openBreakpointBrowserIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  4472
    <resource:#programImage>
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4473
    ^ self openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4474
!
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4475
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4476
paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4477
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4478
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4479
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4480
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4481
     the ImageEditor may not be able to read the specification."
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
     self paste22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4485
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4486
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4487
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4488
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4489
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4490
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4491
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4492
	constantNamed:#'GenericToolbarIconLibrary class paste22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4493
	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
  4494
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4495
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
  4496
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
  4497
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4498
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4499
pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4500
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4501
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4502
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4503
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4504
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4505
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4506
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4507
     self pasteMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4508
     ImageEditor openOnClass:self andSelector:#pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4509
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4510
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4511
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4512
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4513
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4514
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4515
	constantNamed:#'GenericToolbarIconLibrary class pasteMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4516
	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
  4517
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4518
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
  4519
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
  4520
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4521
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4522
printer22x22Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  4523
    <resource:#programImage>
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4524
    ^ self printer22x22Icon1
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4525
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4526
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4527
printer22x22Icon1
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4528
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4529
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4530
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4531
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4532
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4533
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4534
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4535
     self printer22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4536
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4537
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4538
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4539
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4540
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4542
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4543
	constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4544
	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
  4545
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4546
@@@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
  4547
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
  4548
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4549
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4550
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4551
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4552
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4553
printer22x22Icon2
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4554
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4555
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4556
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4557
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4558
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4559
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4560
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4561
     self defaultIcon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4562
     ImageEditor openOnClass:self andSelector:#defaultIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4563
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4564
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4565
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4566
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4567
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4568
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4569
	constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4570
	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
  4571
QDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@ADQDQ@QDQDQDQDADQDQDAD@@AD@@PDQDQD
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4572
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
  4573
@@@@@@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
  4574
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4575
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4576
reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4577
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4578
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4579
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4580
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4581
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4582
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4583
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4584
     self reload22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4585
     ImageEditor openOnClass:self andSelector:#reload22x22Icon
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4589
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4590
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4591
	constantNamed:#'GenericToolbarIconLibrary class reload22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4592
	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
  4593
@@@@@@@@@@@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
  4594
@@@@@@@@@@@@@@@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
  4595
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4596
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4597
removeTab22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4598
    "This resource specification was automatically generated
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4599
     by the ImageEditor of ST/X."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4600
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4601
    "Do not manually edit this!! If it is corrupted,
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4602
     the ImageEditor may not be able to read the specification."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4603
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4604
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4605
     self close22x22Icon inspect
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4606
     ImageEditor openOnClass:self andSelector:#close22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4607
     Icon flushCachedIcons
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4608
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4609
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4610
    <resource: #image>
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4611
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4612
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4613
	constantNamed:#'GenericToolbarIconLibrary class removeTab22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4614
	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
  4615
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4616
@@@@@ 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
  4617
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4618
@@@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
  4619
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4620
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4621
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  4622
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4623
right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4624
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4625
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4626
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4627
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4628
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4630
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4631
     self right22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4632
     ImageEditor openOnClass:self andSelector:#right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4633
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4634
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4635
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4636
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4637
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4638
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4639
	constantNamed:#'GenericToolbarIconLibrary class right22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4640
	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
  4641
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4642
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
  4643
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4644
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4645
save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4646
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4647
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4648
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4649
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4650
     the ImageEditor may not be able to read the specification."
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
     self save22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4654
     ImageEditor openOnClass:self andSelector:#save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4655
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4656
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4657
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4658
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4659
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4660
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4661
	constantNamed:#'GenericToolbarIconLibrary class save22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4662
	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
  4663
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
  4664
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
  4665
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4666
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4667
saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4668
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4669
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4670
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4671
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4672
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4673
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4674
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4675
     self saveAsMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4676
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4677
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4678
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4680
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4681
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4682
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4683
	constantNamed:#'GenericToolbarIconLibrary class saveAsMethod22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4684
	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
  4685
@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
  4686
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4687
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
  4688
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4690
start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4691
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4692
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4693
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4694
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4695
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4696
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4697
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4698
     self start22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4699
     ImageEditor openOnClass:self andSelector:#start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4700
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4701
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4702
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4703
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4705
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4706
	constantNamed:#'GenericToolbarIconLibrary class start22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4707
	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
  4708
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4709
<^@@@@@@@@@@@@;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
  4710
@@@@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
  4711
@@@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
  4712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4713
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4714
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4715
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4716
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4717
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4718
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4719
startNewSystemBrowserIcon22x22
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4720
    "This resource specification was automatically generated
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4721
     by the ImageEditor of ST/X."
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4722
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4723
    "Do not manually edit this!! If it is corrupted,
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4724
     the ImageEditor may not be able to read the specification."
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4725
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4726
    "
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4727
     self startNewSystemBrowserIcon22x22 inspect
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4728
     ImageEditor openOnClass:self andSelector:#startNewSystemBrowserIcon22x22
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4729
     Icon flushCachedIcons
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4730
    "
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4731
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4732
    <resource: #image>
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4733
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4734
    ^Icon
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4735
        constantNamed:'XPToolbarIconLibrary class startNewSystemBrowserIcon22x22'
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4736
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4737
NP(JB (JB (JB (9@@@@@@@@@@@@@@*Q$YFQ$YFQ$YFQB @@@@@@@@@@@@@J$V1,[F1,[F1,[@(@@@@@@@@@@@@@B)E,[F1,[F1,[F0J@@@@@@@@@@@@@@*Q
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4738
[F1,[F1,[F1,B @@@@@@@@@@@@@JNQHRD!!HRD!!HRD (@@@@@@@@@@@@@NP(JB (JB (JB (9@@@@@@@@@@@@@@@@@@@@@@@@QATTIR)P@@@@@@@@@@@@@@@@
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4739
@@@@F2]HVEQ@JBI''@@@@@@@@@@@@@@@@J6&Q XFA UT)FF\JB (JB @@@@@@KFI[B0,H@ LGA TU_9FQ$S$@@@@@L5I1V0,CB@XMCPXMAQLA@PDR@@@@@B1Y
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4740
VT8KB@4NC 8NCPTW@PDAD @@@@@,Y$-CB0XMC0<OC08EGQHRD!!H@@@@@KE%UP0,LC!!DQDQ@OAQ4JB (J@@@@@B5IVT4KB0,KB0,KB0,T@@@@@@@@@@AEMU%M
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4741
B0,KB0,KB0-GF (JB (@@@@@@A=@ST5MS$9NS$9+GF^Q$YD9@@@@@@@$G4%&Y&)1]XV@L#1/[6=/D @@$HI]H1X_M%M&Z&MQL#6B[6=/[1H@#86LWBD@@BTY
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4742
G#P2O%^B[6=/[6<R@@BL[P@@@@@@@@@/K1HRD!!HRD!!HRD @a') ; colorMapFromArray:#[0 0 0 32 223 32 40 255 124 50 255 112 51 255 109 54 229 139 62 255 87 62 255 88 62 255 91 62 255 136 64 64 64 73 255 115 83 255 62 91 255 73 94 255 74 101 255 84 105 255 85 112 255 96 127 127 127 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 143 175 208 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 159 192 239 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 160 208 255 160 223 255 170 170 170 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 175 223 255 176 175 207 176 176 176 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 176 223 255 176 224 255 176 239 255 183 183 183 190 190 190 191 175 143 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 239 255 191 240 255 192 192 208 192 239 255 192 240 255 192 255 255 196 196 196 207 143 95 207 207 191 207 207 207 207 207 208 207 207 223 207 208 223 207 223 239 207 239 240 207 239 255 207 240 255 207 255 255 208 208 223 208 208 224 208 224 239 208 255 255 217 217 217 223 32 32 223 128 63 223 192 255 223 223 32 223 223 224 223 255 255 224 224 224 224 224 239 224 239 240 224 255 255 231 207 255 231 208 255 238 191 255 238 192 255 239 159 232 239 191 255 239 223 255 239 224 255 239 239 224 239 239 239 239 239 240 239 255 255 240 207 144 240 239 223 240 240 239 240 255 255 246 176 255 247 175 255 247 207 255 247 239 255 254 160 255 254 191 255 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??@@??@@??@@??@@??@@??@@??@@@O0@@_<@@??<A??<C??<C??<C??<C??<C??@C??<A??<A??<O??<_O?<LA?<') ; yourself); yourself]
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4743
!
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  4744
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4745
stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4746
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4747
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4748
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4749
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4750
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4751
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4752
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4753
     self stop22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4754
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4755
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4756
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4757
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4758
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4759
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4760
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4761
	constantNamed:#'GenericToolbarIconLibrary class stop22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4762
	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
  4763
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4764
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4765
up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4766
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4767
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4768
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4769
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4770
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4771
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4772
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4773
     self up22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4774
     ImageEditor openOnClass:self andSelector:#up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4775
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4776
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4777
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4778
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4779
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4780
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4781
	constantNamed:#'GenericToolbarIconLibrary class up22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4782
	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
  4783
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
  4784
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
  4785
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4786
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4787
upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4788
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4789
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4790
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4791
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4792
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4793
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4794
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4795
     self upRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4796
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4797
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4798
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4799
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4800
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4801
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4802
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4803
	constantNamed:#'GenericToolbarIconLibrary class upRight22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4804
	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
  4805
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
  4806
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
  4807
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4808
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4809
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4810
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4811
baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4812
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4813
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4814
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4815
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4816
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4817
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4818
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4819
     self baseImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4820
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4821
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4822
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4823
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4824
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4825
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4826
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4827
	constantNamed:#'GenericToolbarIconLibrary class baseImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4828
	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
  4829
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4830
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
  4831
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
  4832
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  4833
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4834
    "Modified: / 06-02-2007 / 19:41:08 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4835
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4836
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4837
baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4838
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4839
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4840
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4841
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4842
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4843
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4844
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4845
     self baseMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4846
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4847
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4848
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4849
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4850
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4851
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4852
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4853
	constantNamed:#'GenericToolbarIconLibrary class baseMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4854
	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
  4855
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  4856
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
  4857
@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
  4858
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  4859
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4860
    "Modified: / 06-02-2007 / 19:41:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4861
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4862
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4863
baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4864
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4865
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4866
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4867
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4868
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4870
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4871
     self baseWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4872
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4873
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4874
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4875
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4876
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4877
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4878
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4879
	constantNamed:#'GenericToolbarIconLibrary class baseWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4880
	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
  4881
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4882
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
  4883
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
  4884
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  4885
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4886
    "Modified: / 06-02-2007 / 19:41:03 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4887
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4888
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4889
bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4890
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4891
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4893
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4894
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4896
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4897
     self bugReporter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4898
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4899
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4900
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4901
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4902
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4904
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4905
	constantNamed:#'GenericToolbarIconLibrary class bugReporter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4906
	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
  4907
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4908
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
  4909
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4910
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  4911
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4912
    "Modified: / 06-02-2007 / 19:41:01 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4913
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4914
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4915
changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4916
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4917
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4918
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4919
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4920
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4921
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4922
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4923
     self changesBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4924
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4925
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4926
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4927
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4928
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4929
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4930
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4931
	constantNamed:#'GenericToolbarIconLibrary class changesBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4932
	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
  4933
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4934
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
  4935
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4936
    "Modified: / 06-02-2007 / 19:40:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4937
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4938
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4939
desktop24x24Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4940
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4941
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4942
    ^self desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4943
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4944
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4945
desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4946
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4947
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4948
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4949
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4950
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4951
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4952
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4953
     self desktop24x24Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4954
     ImageEditor openOnClass:self andSelector:#desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4955
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4956
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4957
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4958
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4959
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4960
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4961
	constantNamed:'GenericToolbarIconLibrary class desktop24x24Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4962
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4963
@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
  4964
^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
  4965
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
  4966
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
  4967
@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
  4968
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
  4969
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
  4970
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  4971
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4972
documents24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4973
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4974
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4975
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4976
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4977
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4978
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4979
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4980
     self documents24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4981
     ImageEditor openOnClass:self andSelector:#documents24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4982
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4983
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4984
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4985
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4986
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4987
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4988
        constantNamed:'GenericToolbarIconLibrary class documents24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4989
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4990
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V%)FG@$IB&8^%9]]!!5APGP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4991
TP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@VE +^9FQO8 F%IRULXFA%C@3L0@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@ H@*^ HBKWNP
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4992
UUVB (JB #1+Z0@@@@@@ H@*^ HBKWNPUUVB (JB #1+Z0@@@@@@B@"M@#4=K@=Y%YT#G2D!!&VPZF @@@@@@K2<)J@DAACZPUUUG_(NCFFQVU @@@@@@F1-9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4993
#C,;EU9Y%YUJCE1\[VQ*Z @@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@U5^K@H*JSP9Y%YU_W5=_W31=_P@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4994
@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@K"95II.[R06PUUVB (JB
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4995
 #2O#0@@@@@@K"9 SI*ZH$ 2B0,RD#$9NRXYFP@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@''I1[P6Y&](Y1
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4996
N#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G?? G?? G?? G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G?0@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4997
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  4998
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4999
dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5000
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5001
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5002
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5003
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5004
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5006
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5007
     self dos24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5008
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5009
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5010
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5012
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5013
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5014
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5015
	constantNamed:#'GenericToolbarIconLibrary class dos24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5016
	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
  5017
@@@@@@@@@@@@@@@@@@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
  5018
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
  5019
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5020
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5021
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5022
    "Modified: / 06-02-2007 / 19:40:56 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5023
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5024
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5025
fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5026
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5027
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5028
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5029
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5030
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5031
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5032
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5033
     self fileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5034
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5035
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5036
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5038
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5039
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5040
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5041
	constantNamed:#'GenericToolbarIconLibrary class fileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5042
	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
  5043
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5044
=/[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
  5045
@@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
  5046
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5047
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5048
    "Modified: / 06-02-2007 / 19:40:54 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5049
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5050
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5051
fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5052
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5053
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5055
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5056
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5058
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5059
     self fileIn24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5060
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5065
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5066
	constantNamed:#'GenericToolbarIconLibrary class fileIn24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5067
	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
  5068
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5069
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
  5070
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5071
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5072
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5073
    "Modified: / 06-02-2007 / 19:40:51 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5074
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5075
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5076
garbageCollect24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5077
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5078
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5079
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5080
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5081
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5082
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5083
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5084
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5085
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5086
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5087
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5089
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5090
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5091
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5092
	constantNamed:#'GenericToolbarIconLibrary class garbageCollect24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5093
	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
  5094
@@@@@@@@@@@@@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
  5095
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
  5096
@@@@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
  5097
@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
  5098
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5099
    "Modified: / 06-02-2007 / 19:40:47 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5100
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5101
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5102
imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5103
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5104
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5105
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5106
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5107
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5108
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5109
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5110
     self imageEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5111
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5112
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5113
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5115
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5116
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5117
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5118
	constantNamed:#'GenericToolbarIconLibrary class imageEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5119
	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
  5120
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5121
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
  5122
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
  5123
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5124
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5125
    "Modified: / 06-02-2007 / 19:40:45 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5126
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5127
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5128
installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5129
    "This resource specification was automatically generated
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5130
     by the ImageEditor of ST/X."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5131
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5132
    "Do not manually edit this!! If it is corrupted,
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5133
     the ImageEditor may not be able to read the specification."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5134
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5135
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5136
     self installAsWebPage24x24Icon inspect
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5137
     ImageEditor openOnClass:self andSelector:#installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5138
     Icon flushCachedIcons
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5139
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5140
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5141
    <resource: #image>
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5142
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5143
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5144
	constantNamed:#'GenericToolbarIconLibrary class installAsWebPage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5145
	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
  5146
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"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
  5147
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
  5148
@%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
  5149
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5150
!
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5151
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5152
leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5153
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5154
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5155
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5156
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5157
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5158
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5159
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5160
     self leftArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5161
     ImageEditor openOnClass:self andSelector:#leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5162
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5163
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5164
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5165
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5166
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5167
	constantNamed:#'GenericToolbarIconLibrary class leftArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5168
	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
  5169
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5170
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5171
@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
  5172
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
  5173
@@@@@@@@D (]H H@@@@@@@@@@@@@@@@@@@@@@@@@@AHJHPD@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5174
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5175
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5176
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5177
    "Modified: / 06-02-2007 / 19:40:42 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5178
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5179
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5180
leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5181
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5182
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5183
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5184
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5185
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5186
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5187
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5188
     self leftArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5189
     ImageEditor openOnClass:self andSelector:#leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5190
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5191
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5192
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5193
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5194
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5195
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5196
	constantNamed:'GenericToolbarIconLibrary class leftArrow24x24disabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5197
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5198
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5199
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5200
@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
  5201
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
  5202
@@@@@@@@DP(YGPH@@@@@@@@@@@@@@@@@@@@@@@@@@ADJG@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5203
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5204
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5205
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5206
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5207
menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5208
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5209
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5210
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5211
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5212
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5213
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5214
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5215
     self menuEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5216
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5217
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5218
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5219
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5220
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5221
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5222
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5223
	constantNamed:#'GenericToolbarIconLibrary class menuEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5224
	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
  5225
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5226
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
  5227
@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
  5228
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5229
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5230
    "Modified: / 06-02-2007 / 19:40:40 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5231
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5232
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5233
newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5234
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5235
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5236
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5237
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5238
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5239
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5240
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5241
     self newDataSet24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5242
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5243
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5244
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5245
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5246
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5247
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5248
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5249
	constantNamed:#'GenericToolbarIconLibrary class newDataSet24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5250
	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
  5251
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5252
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
  5253
@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
  5254
@@@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
  5255
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5256
    "Modified: / 06-02-2007 / 19:40:38 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5257
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5258
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5259
newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5260
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5261
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5263
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5264
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5266
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5267
     self newFileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5268
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5269
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5270
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5272
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5273
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5274
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5275
	constantNamed:#'GenericToolbarIconLibrary class newFileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5276
	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
  5277
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5278
=/[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
  5279
@@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
  5280
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5281
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5282
    "Modified: / 06-02-2007 / 19:40:36 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5283
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5284
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5285
newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5286
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5287
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5288
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5289
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5290
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5292
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5293
     self newImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5294
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5295
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5296
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5297
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5298
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5299
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5300
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5301
	constantNamed:#'GenericToolbarIconLibrary class newImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5302
	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
  5303
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5304
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
  5305
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
  5306
@@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
  5307
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5308
    "Modified: / 06-02-2007 / 19:40:31 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5309
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5310
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5311
newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5312
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5313
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5315
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5316
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5318
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5319
     self newMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5320
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5321
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5322
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5324
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5325
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5326
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5327
	constantNamed:#'GenericToolbarIconLibrary class newMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5328
	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
  5329
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5330
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
  5331
@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
  5332
@@@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
  5333
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5334
    "Modified: / 06-02-2007 / 19:40:29 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5335
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5336
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5337
newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5338
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5339
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5340
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5341
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5342
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5343
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5344
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5345
     self newSystemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5346
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5347
     Icon flushCachedIcons
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5351
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5352
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5353
	constantNamed:#'GenericToolbarIconLibrary class newSystemBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5354
	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
  5355
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5356
@@@@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
  5357
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5358
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5359
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5360
    "Modified: / 06-02-2007 / 19:40:26 / cg"
3059
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
newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5364
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5365
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5366
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5367
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5368
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5369
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5370
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5371
     self newWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5372
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5373
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5374
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5375
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5376
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5377
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5378
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5379
	constantNamed:#'GenericToolbarIconLibrary class newWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5380
	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
  5381
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5382
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
  5383
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
  5384
@@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
  5385
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5386
    "Modified: / 06-02-2007 / 19:40:22 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5387
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5388
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5389
new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5390
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5391
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5392
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5393
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5394
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5395
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5396
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5397
     self new_24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5398
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5399
     Icon flushCachedIcons
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5403
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5404
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5405
	constantNamed:#'GenericToolbarIconLibrary class new_24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5406
	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
  5407
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5408
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5409
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5410
@@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
  5411
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5412
    "Modified: / 06-02-2007 / 19:40:20 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5413
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5414
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5415
packageOpen24x24Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5416
    <resource:#programImage>
4072
4a9f93742645 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4071
diff changeset
  5417
    ^ self packageOpen24x24Icon2
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5418
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5419
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5420
packageOpen24x24Icon1
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5421
    "This resource specification was automatically generated
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5422
     by the ImageEditor of ST/X."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5423
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5424
    "Do not manually edit this!! If it is corrupted,
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5425
     the ImageEditor may not be able to read the specification."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5426
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5427
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5428
     self packageOpen24x24Icon1 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5429
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon1
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5430
     Icon flushCachedIcons
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5431
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5432
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5433
    <resource: #image>
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5434
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5435
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5436
	constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5437
	ifAbsentPut:[(Depth8Image new) width: 24; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5438
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@OB (JB (JB (J
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5439
B (JB @@@@@@@@@@@@<JA XFA XFA XFA LHC@@@@@@@@@@@C1,FA XFA XFA XFA XIE0(@@@@@@@@[B XFA XFA XFA XFA@T^GA J@@@@@AHJA XFA XF
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5440
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
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5441
L3L0LB</K20$EQ(JJ0(PB @@@@<OCP4MCP0LC@0JB (JFQ LB 8TB @@@@@@B!!(ZF!!(ZF!!(ZF!!(ZFQ PC!!@TB @@@@@@C14^G!!8]GQ4]GA,[F1$VEQTTB @@
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5442
@@@@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
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5443
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]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5444
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  5445
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5446
packageOpen24x24Icon2
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5447
    "This resource specification was automatically generated
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5448
     by the ImageEditor of ST/X."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5449
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5450
    "Do not manually edit this!! If it is corrupted,
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5451
     the ImageEditor may not be able to read the specification."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5452
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5453
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5454
     self packageOpen24x24Icon2 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5455
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon2
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5456
     Icon flushCachedIcons
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5457
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5458
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5459
    <resource: #image>
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5460
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5461
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5462
	constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5463
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5464
TUEQTUEQTUEQTTR3TUEQTUEQTUEQTUEQTUEQTUEQTUEQ3;=MTUEQ63]QTUEQTUEQTUEQTUEQTUF3V#V@W%EQFXECTUEQTUEQTUEQTUEQ,08B\7>$%H9^V7M(
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5465
)%EQTUEQTUEQTPZ3W0<4\6"$/+6[Y6"L+MYQTUEQTUEQ/21K*@=[''\4;.:-5''V"XDJCITUEQTUEQG#GQ*A)&4+,0R-<<%QL\!!UW^"UEQTUEQT\,G)47F8K1V
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5466
$!!^/$70:*T#R5UMQTV(8Z%6CP@/T.<]#-;@#B$$T.YX.]4EQTUD8NV,3^!!^0E"H/[:LVX2JF4JGD&UEQTUEQ "Z.2+ZWOT*GJ&OSR)>RXLU0_V%6TUEQTXJ"
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5467
P+5WX)KB"6I;3):*7FE-VBBOTUEQTUER)W I[,!!.6,LECLA\Q%SLO%EQTUEQTUF=/P@X,U#CDZEEEV"P"A=NTUEQTUEQTUE5%*T@I[!!17R$RID_]\%PCTUEQ
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5468
TUEQTUDA!!XV5-[U>^]7]7P$I[P"4TUEQTUEQTUDADA@PDABJ-T^EXVE!!*R64TUEQTUEQTUFMGDIB]GR:DACA0YFQAI24TUEQTUEQTUEQSFWYZF U HAOS2"D
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5469
[M!!QTUEQTUEQTUEQTZ5YY6][)JRLJEA$&%EQTUEQTUEQTUEQTUDMJ0HO\94!!SI+WTUEQTUEQTUEQTUEQTUEQL#X]C40[&))QTUEQTUEQTUEQTUEQTUEQT[H?
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5470
I9*ZTUEQTUEQTUEQTUEQTUEQTUEQTUFZ&%EQTUEQTUEQTUEQ') ; colorMapFromArray:#[240 158 10 244 178 40 255 254 150 188 168 150 255 222 60 156 108 10 252 204 100 255 252 180 212 126 30 255 208 50 204 168 0 184 134 0 232 174 60 212 134 60 255 232 110 255 255 160 255 228 70 148 90 0 252 240 150 248 216 70 228 144 10 255 254 130 212 182 0 192 148 0 248 184 30 252 204 60 255 244 130 180 104 60 255 234 80 248 214 150 252 186 50 208 112 10 196 94 20 255 244 110 220 196 0 200 162 0 248 230 110 236 148 10 255 212 70 180 106 60 255 240 90 240 204 120 255 255 0 252 234 130 255 216 110 212 128 30 255 192 20 228 210 0 208 176 0 255 240 170 204 138 90 255 230 100 255 255 150 255 246 100 216 120 40 248 200 110 252 184 40 255 222 120 244 196 50 255 198 30 188 142 0 216 190 0 200 198 200 204 104 30 255 180 10 180 168 160 255 236 80 232 188 110 255 246 230 236 180 80 240 194 50 228 168 50 255 204 40 196 156 0 224 204 0 255 252 190 220 138 40 255 186 20 180 158 140 255 242 90 248 204 80 0 0 0 252 174 20 200 118 40 212 124 20 255 210 50 212 184 0 184 136 0 232 146 10 236 178 60 255 204 50 255 255 140 255 248 100 248 182 40 252 204 70 255 252 170 220 138 20 255 216 60 220 198 0 216 192 0 208 116 30 244 192 60 255 216 70 255 255 130 255 254 110 208 112 40 252 182 30 255 254 170 204 116 30 255 206 40 180 134 10 248 248 0 224 140 20 228 130 0 255 188 20 255 255 120 255 238 80 248 178 30 204 110 50 200 116 30 252 212 50 255 212 50 180 130 0 224 208 0 232 148 10 212 120 30 255 228 90 255 255 110 255 244 90 248 190 50 244 186 60 255 218 100 252 230 80 255 218 60 220 200 0 232 222 0 216 120 10 220 124 10 255 234 100 252 242 10 255 250 100 232 158 40 236 184 80 184 120 80 244 216 80 255 224 70 228 214 0 184 140 0 248 182 20 236 158 20 255 200 40 204 164 0 255 246 90 208 196 180 204 158 130 255 244 140 212 132 30 255 254 120 204 180 10 224 210 0 248 194 40 220 126 10 255 212 60 212 178 0 255 252 100 248 182 30 228 160 60 255 216 90 255 255 170 255 214 50 164 116 20 168 114 0 248 200 50 212 136 50 255 252 130 196 152 0 200 158 0 240 156 10 204 148 110 255 194 50 188 166 150 255 220 60 180 134 0 232 226 0 224 130 0 252 206 50 255 242 110 204 166 0 208 172 0 248 176 20 252 174 10 255 190 40 252 250 100 255 226 70 236 232 0 152 96 0 208 108 10 220 128 10 255 190 20 212 180 0 216 192 10 224 140 30 252 180 20 255 196 50 188 104 40 255 238 90 228 220 0 252 216 140 224 148 30 255 255 190 255 196 30 220 194 0 192 146 0 232 144 10 228 150 40 176 124 100 180 96 50 255 244 100 156 98 0 252 196 90 240 182 40 212 114 10 255 202 40 188 140 0 200 160 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@@GF@@O''@@?? C??0G??8G??<C??>_??>O??<G???C???A??<A??8A??8A??8A??8A??8@??0@_? @O?@@G>@@C8@@A @') ; yourself); yourself]
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5471
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  5472
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5473
redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5474
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5475
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5476
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5477
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5478
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5479
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5480
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5481
     self redoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5482
     ImageEditor openOnClass:self andSelector:#redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5483
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5484
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5485
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5486
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5487
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5488
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5489
	constantNamed:#'GenericToolbarIconLibrary class redoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5490
	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
  5491
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,WEEKUE5-@@@@@@@@@@@@@@@@@@@@@E0>D!!</HQ%@VF4@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5492
@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
  5493
@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
  5494
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
  5495
@@@@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
  5496
@@@@@@@@@@@@@@@@V HXF05P@@@@@@@@@@@@@@@@@@@@@@@@@E(BDT!!+@@@@@@@@@@@@@@@@@@@@@@@@@@AZOF,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5497
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5498
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5499
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5500
reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5501
    "This resource specification was automatically generated
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5502
     by the ImageEditor of ST/X."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5503
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5504
    "Do not manually edit this!! If it is corrupted,
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5505
     the ImageEditor may not be able to read the specification."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5506
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5507
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5508
     self reload24x24Icon inspect
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5509
     ImageEditor openOnClass:self andSelector:#reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5510
     Icon flushCachedIcons
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5511
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5512
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5513
    <resource: #image>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5514
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5515
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5516
	constantNamed:'XPToolbarIconLibrary class reload24x24Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5517
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5518
\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
  5519
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
  5520
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
  5521
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
  5522
[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
  5523
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
  5524
@@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
  5525
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  5526
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5527
rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5528
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5529
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5530
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5531
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5532
     the ImageEditor may not be able to read the specification."
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
     self rightArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5536
     ImageEditor openOnClass:self andSelector:#rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5537
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5539
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5540
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5541
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5542
	constantNamed:#'GenericToolbarIconLibrary class rightArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5543
	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
  5544
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5545
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5546
@@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
  5547
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
  5548
@@@@@@@@@@@@@QXQF H@@@@@@@@@@@@@@@@@@@@@@@@@@0PZ@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q(B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5549
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5550
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5551
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5552
    "Modified: / 06-02-2007 / 19:40:15 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5553
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5554
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5555
rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5556
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5557
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5558
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5559
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5560
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5561
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5562
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5563
     self rightArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5564
     ImageEditor openOnClass:self andSelector:#rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5565
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5566
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5567
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5568
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5569
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5570
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5571
	constantNamed:'GenericToolbarIconLibrary class rightArrow24x24disabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5572
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5573
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5574
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5575
@@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
  5576
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
  5577
@@@@@@@@@@@@@QTQE0H@@@@@@@@@@@@@@@@@@@@@@@@@@0PW@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q\B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5578
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5579
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5580
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5581
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5582
sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5583
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5584
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5585
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5586
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5587
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5588
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5589
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5590
     self sUnit24x24BaseIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5591
     ImageEditor openOnClass:self andSelector:#sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5592
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5593
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5594
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5595
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5596
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5597
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5598
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24BaseIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5599
	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
  5600
@@@@@@@@@@@@@@@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
  5601
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
  5602
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
  5603
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5604
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5605
sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5606
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5607
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5608
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5609
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5610
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5611
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5612
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5613
     self sUnit24x24DebugIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5614
     ImageEditor openOnClass:self andSelector:#sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5615
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5616
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5617
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5618
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5619
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5620
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5621
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24DebugIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5622
	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
  5623
@@@@@@@@@@@@@@@@@@@@@@@@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
  5624
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
  5625
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
  5626
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
  5627
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
  5628
@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
  5629
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5630
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5631
sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5632
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5633
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5634
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5635
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5636
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5637
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5638
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5639
     self sUnit24x24Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5640
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5641
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5642
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5643
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5644
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5645
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5646
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5647
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5648
	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
  5649
@@@@@@@@@@@@@@@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
  5650
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
  5651
@@@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
  5652
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  5653
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5654
saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5655
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5656
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5657
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5658
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5659
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5660
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5661
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5662
     self saveImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5663
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5664
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5665
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5666
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5667
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5668
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5669
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5670
	constantNamed:#'GenericToolbarIconLibrary class saveImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5671
	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
  5672
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5673
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
  5674
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
  5675
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5676
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5677
    "Modified: / 06-02-2007 / 19:40:12 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5678
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5680
shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5681
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5682
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5683
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5684
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5685
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5686
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5687
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5688
     self shell24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5689
     ImageEditor openOnClass:self andSelector:#shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5690
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5692
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5693
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5694
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5695
	constantNamed:#'GenericToolbarIconLibrary class shell24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5696
	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
  5697
@@@@@@@@@@@@@@@@@@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
  5698
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
  5699
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5700
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5701
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5702
    "Modified: / 06-02-2007 / 19:40:09 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5703
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5705
systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5706
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5707
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5708
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5709
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5710
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5712
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5713
     self systemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5714
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5715
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5716
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5717
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5718
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5720
    ^Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5721
        constantNamed:'GenericToolbarIconLibrary class systemBrowser24x24Icon'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5722
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5723
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDR@@@@@@@@@AL3L3L4@@@@@@@@@AL3L3L4@@@@@@@@@BQDQDQD@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5724
@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@UUUUUU@@@@@@@@@@$QDQDP@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5725
@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@VY&Y&Y@@@@@@@@@@$QDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5726
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 172 170 170 255 0 0 128 128 130 0 255 0 255 255 0]; 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
  5727
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5728
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5729
uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5730
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5731
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5732
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5733
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5734
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5735
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5736
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5737
     self uiPainter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5738
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5739
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5740
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5742
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5743
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5744
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5745
	constantNamed:#'GenericToolbarIconLibrary class uiPainter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5746
	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
  5747
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5748
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
  5749
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
  5750
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5751
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5752
    "Modified: / 06-02-2007 / 19:40:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5753
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5754
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5755
undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5756
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5757
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5758
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5759
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5760
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5761
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5762
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5763
     self undoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5764
     ImageEditor openOnClass:self andSelector:#undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5765
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5766
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5767
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5768
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5769
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5770
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5771
	constantNamed:#'GenericToolbarIconLibrary class undoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5772
	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
  5773
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[U5TR5E\[@@@@@@@@FMFP% @@@@@@F5XPA$!!K1<R
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5774
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
  5775
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
  5776
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
  5777
@@@@@@@@@@@@@@@@@@@@UP$[F0U^@@@@@@@@@@@@@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@E(BFA,VOV,@@@@@@@@@@@@@@@@@@@@@V HXF1 B
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5778
X@@@@@@@@@@@@@@@@@@@@@@@T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@Z4 Q@%(@@@@@@@@@@@@@@@@@@@@@@@@@@F,<V @@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5779
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5780
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5781
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5782
upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5783
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5784
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5785
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5786
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5787
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5788
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5789
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5790
     self upArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5791
     ImageEditor openOnClass:self andSelector:#upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5792
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5793
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5794
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5796
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5797
	constantNamed:#'GenericToolbarIconLibrary class upArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5798
	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
  5799
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5800
@@@@@@@@@@@@@@@@@@@A@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@DFA0 DAP@@@@@@@@@@@@@@@@@@@@@@@P$@A0(HA@T@@@@@@@@@@@@@@@@@@@@AB0@@C@4N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5801
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
  5802
GA4OD1LJEPD\@Q0A@ @@@@@@@@@@@@@@@!!8^C1T_A@T@@@@@@@@@@@@@@@@@@@@@E @GHATRA@T@@@@@@@@@@@@@@@@@@@@@E @GDQT_A@T@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5803
@@@@@@@@@P@!!H!!TJA@T@@@@@@@@@@@@@@@@@@@@@@P\#IATTA@T@@@@@@@@@@@@@@@@@@@@@@QXXFPPDF H@@@@@@@@@@@@@@@@@@@@@@ TEAPTE@ H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5804
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5805
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  5806
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5807
    "Modified: / 06-02-2007 / 19:40:02 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5808
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5809
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5810
workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5811
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5812
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5813
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5814
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5815
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5816
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5817
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5818
     self workspace24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5819
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5820
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5821
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5822
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5823
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5824
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5825
    ^Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5826
        constantNamed:'GenericToolbarIconLibrary class workspace24x24Icon'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5827
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5828
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&Y&Y&Y&Y @@@@@@@@@@@@@@@@@QDQDQDQDQDQDQAP@TPDQDQ@Q@PQDQ@ @TPDQDQ@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5829
P@@QDQ@ @P@D@@Q@Q@PQDQ@ @PPDA@Q@Q@PQDQ@ @P@D@@Q@Q@@QDQ@ @QDQDQDQDQD1DQ@ @QDQDQDQDQD3DQ@ @QDQDQDQDQD3LQ@ @QDQDQDQDQD3DQ@G
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5830
@QDQDQDQDQDQLQ@ @QDQDQDQDQDQLQ@ @QDQDQDQDQDQDQAP@@@@@@@@@@@@@@@@ARH"H"H"H"H"H%AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5831
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 0 127 127 127 0 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@????????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5832
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5834
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5835
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5836
bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5837
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5838
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5839
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5840
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5841
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5842
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5843
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5844
     self bug28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5845
     ImageEditor openOnClass:self andSelector:#bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5846
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5847
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5848
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5849
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5850
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5851
	constantNamed:#'GenericToolbarIconLibrary class bug28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5852
	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
  5853
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5854
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5855
@@@@@@@@@@@@@@@@@@@@@@@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
  5856
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5857
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5858
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5859
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5860
bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5861
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5862
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5863
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5864
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5865
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5866
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5867
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5868
     self bugReporter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5869
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5870
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5871
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5872
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5873
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5874
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5875
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5876
	constantNamed:#'GenericToolbarIconLibrary class bugReporter28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5877
	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
  5878
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5879
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5880
@@@@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
  5881
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5882
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  5883
@@??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
  5884
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a') ; yourself); yourself]
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
bugReporterIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5888
    <resource:#programImage>
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5889
    ^ self bugReporter28x28Icon
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
changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5893
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5894
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5896
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5897
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5898
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5899
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5900
     self changesBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5901
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5902
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5903
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5904
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5905
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5907
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5908
	constantNamed:#'GenericToolbarIconLibrary class changesBrowser28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5909
	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
  5910
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5911
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5912
@@@@@@@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
  5913
@@??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
  5914
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5915
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5917
copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5918
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5919
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5920
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5921
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5922
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5923
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5924
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5925
     self copy28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5926
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
4091
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5927
     Icon flushCachedIcons
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5928
    "
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5929
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5930
    <resource: #image>
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5931
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5932
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5933
	constantNamed:'GenericToolbarIconLibrary class copy28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5934
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4091
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5935
@@@@@@@@@@@@@@@@@@@@@@O????8@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****P@@@@@@**$C????>J*)@:****R**PN****$**$C****)J*
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5936
)@:****R**PN****$**$C****)J*)@:****R**PN****$**$C****)J*)@:****QUUPN****$@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****Q
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  5937
@@@IUUUUT@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5938
@@@@@@@???@@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
  5939
8@A??>@@_?? @G??8@A??>@@_?? @@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5940
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5941
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5942
cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5943
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5944
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5946
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5947
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5948
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5949
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5950
     self cut28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5951
     ImageEditor openOnClass:self andSelector:#cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5952
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5953
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5954
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5955
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5956
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5957
	constantNamed:#'GenericToolbarIconLibrary class cut28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5958
	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
  5959
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5960
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
  5961
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5962
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
  5963
@@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
  5964
_??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
  5965
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5966
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5967
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5968
delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5969
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5970
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5971
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5972
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5973
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5975
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5976
     self delete28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5977
     ImageEditor openOnClass:self andSelector:#delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5978
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5979
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5980
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5981
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5982
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5983
	constantNamed:#'GenericToolbarIconLibrary class delete28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5984
	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
  5985
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5986
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5987
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5988
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
  5989
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
  5990
@@@@@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
  5991
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5992
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5993
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5994
desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5995
    "This resource specification was automatically generated
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5996
     by the ImageEditor of ST/X."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5997
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5998
    "Do not manually edit this!! If it is corrupted,
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  5999
     the ImageEditor may not be able to read the specification."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6000
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6001
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6002
     self desktop28x28Icon inspect
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6003
     ImageEditor openOnClass:self andSelector:#desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6004
     Icon flushCachedIcons
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6005
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6006
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6007
    <resource: #image>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6008
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6009
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6010
	constantNamed:'GenericToolbarIconLibrary class desktop28x28Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6011
	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
  6012
@@@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
  6013
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
  6014
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
  6015
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
  6016
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
  6017
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
  6018
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
  6019
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
  6020
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
  6021
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
  6022
?0@O??8@A??<@@O?>@@@?>@@@@@@@@@a') ; yourself); yourself]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6023
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6024
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6025
dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6026
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6027
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6028
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6029
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6030
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6031
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6032
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6033
     self dos28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6034
     ImageEditor openOnClass:self andSelector:#dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6035
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6036
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6037
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6038
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6039
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6040
	constantNamed:#'GenericToolbarIconLibrary class dos28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6041
	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
  6042
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6043
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6044
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
  6045
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6046
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6047
@@@@@@@@@@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
  6048
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6049
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6050
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6051
extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6052
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6053
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6055
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6056
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6058
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6059
     self extract28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6060
     ImageEditor openOnClass:self andSelector:#extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6061
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6062
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6063
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6065
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6066
	constantNamed:#'GenericToolbarIconLibrary class extract28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6067
	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
  6068
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6069
@@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
  6070
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6071
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6072
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6073
@@@@@@@@@@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
  6074
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6075
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6076
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6077
fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6078
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6079
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6080
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6081
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6082
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6083
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6084
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6085
     self fileBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6086
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6087
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6088
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6090
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6091
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6092
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6093
	constantNamed:#'GenericToolbarIconLibrary class fileBrowser28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6094
	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
  6095
@@@@@@@@@@@@@@@@@@@@@@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
  6096
; [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
  6097
@@@@@@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
  6098
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6099
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6100
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
  6101
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6102
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6104
fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6105
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6106
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6107
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6108
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6109
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6110
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6111
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6112
     self fileIn28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6113
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6114
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6115
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6116
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6117
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6118
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6119
	constantNamed:#'GenericToolbarIconLibrary class fileIn28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6120
	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
  6121
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6122
@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
  6123
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6124
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6125
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6126
@@@@@@@@@@@@@_?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
  6127
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6128
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6129
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6130
garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6131
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6132
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6133
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6134
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6135
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6137
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6138
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6139
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6140
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6141
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6142
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6143
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6144
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6145
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6146
	constantNamed:#'GenericToolbarIconLibrary class garbageCollect28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6147
	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
  6148
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
  6149
@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
  6150
@@@@@@@@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
  6151
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6152
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@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
  6153
@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
  6154
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6155
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6157
help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6158
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6159
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6160
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6161
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6162
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6163
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6164
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6165
     self help28x28Icon1 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6166
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6167
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6168
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6169
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6170
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6171
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6172
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6173
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6174
	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
  6175
@@@@@@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
  6176
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
  6177
@@@@@@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
  6178
@@?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
  6179
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6180
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6181
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6182
help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6183
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6184
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6186
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6187
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6188
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6189
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6190
     self help28x28Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6191
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6192
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6193
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6194
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6195
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6196
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6197
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6198
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6199
	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
  6200
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6201
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
  6202
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
  6203
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
  6204
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
  6205
@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
  6206
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6207
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6208
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6209
help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6210
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6211
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6212
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6213
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6214
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6215
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6216
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6217
     self help28x28Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6218
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6219
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6220
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6221
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6222
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6223
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6224
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6225
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon3'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6226
	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
  6227
@@@@@@@@@@@@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
  6228
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
  6229
 @@@@@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
  6230
@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
  6231
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
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
history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6235
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6236
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6237
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6238
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6239
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6240
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6241
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6242
     self history28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6243
     ImageEditor openOnClass:self andSelector:#history28x28Icon
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
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6247
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6248
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6249
	constantNamed:#'GenericToolbarIconLibrary class history28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6250
	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
  6251
@@@@@@@@@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
  6252
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6253
@@@@@@@@@@@@@@@@@@@@@@@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
  6254
@@@@@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
  6255
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6256
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6257
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6258
home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6259
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6260
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6261
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6262
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6263
     the ImageEditor may not be able to read the specification."
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
     self home28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6267
     ImageEditor openOnClass:self andSelector:#home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6268
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6269
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6270
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6272
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6273
	constantNamed:#'GenericToolbarIconLibrary class home28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6274
	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
  6275
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6276
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6277
@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
  6278
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
  6279
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6280
@@@@@@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
  6281
@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
  6282
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6283
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6284
@@@@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
  6285
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6286
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6287
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6288
imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6289
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6290
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6292
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6293
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6294
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6295
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6296
     self imageEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6297
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6298
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6299
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6301
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6302
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6303
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6304
	constantNamed:#'GenericToolbarIconLibrary class imageEditor28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6305
	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
  6306
@@@@@@@@@@@@@@@@@@@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
  6307
"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
  6308
@@@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
  6309
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6311
???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
  6312
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6313
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6315
menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6316
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6317
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6318
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6319
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6320
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6321
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6322
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6323
     self menuEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6324
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6325
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6326
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6328
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6330
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6331
	constantNamed:#'GenericToolbarIconLibrary class menuEditor28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6332
	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
  6333
@@@@@@@@@@@@@@@@@@@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
  6334
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
  6335
@@@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
  6336
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6337
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6338
???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
  6339
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6340
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6341
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6342
paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6343
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6344
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6345
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6346
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6347
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6348
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6349
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6350
     self paste28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6351
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6352
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6354
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6355
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6356
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6357
	constantNamed:#'GenericToolbarIconLibrary class paste28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6358
	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
  6359
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6360
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6361
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6362
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6363
@@@@@@@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
  6364
@@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
  6365
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6366
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6367
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6368
reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6369
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6370
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6371
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6372
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6373
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6374
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6375
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6376
     self reloadFromFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6377
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6378
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6379
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6380
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6381
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6382
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6383
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6384
	constantNamed:#'GenericToolbarIconLibrary class reloadFromFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6385
	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
  6386
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6387
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6388
@@@@@@@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
  6389
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
  6390
@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
  6391
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6392
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6393
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6394
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6395
reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6396
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6397
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6398
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6399
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6400
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6401
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6402
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6403
     self reloadTextFromFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6404
     ImageEditor openOnClass:self andSelector:#reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6405
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6406
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6407
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6408
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6409
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6410
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6411
	constantNamed:#'GenericToolbarIconLibrary class reloadTextFromFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6412
	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
  6413
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6414
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6415
@@@@@@@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
  6416
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
  6417
@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
  6418
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6419
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6420
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6421
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6422
sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6423
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6424
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6425
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6426
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6427
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6428
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6429
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6430
     self sUnit28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6431
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6432
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6433
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6434
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6435
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6436
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6437
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6438
	constantNamed:#'GenericToolbarIconLibrary class sUnit28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6439
	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
  6440
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6441
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
  6442
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
  6443
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6444
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6445
@@@@@@@@@@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
  6446
?>A???? _???8G???>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6447
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6448
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6449
saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6450
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6451
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6452
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6453
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6454
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6455
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6456
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6457
     self saveImage28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6458
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6459
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6460
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6462
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6463
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6464
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6465
	constantNamed:#'GenericToolbarIconLibrary class saveImage28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6466
	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
  6467
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
  6468
@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
  6469
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
  6470
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
  6471
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6472
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6473
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6474
saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6475
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6476
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6477
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6478
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6479
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6480
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6481
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6482
     self saveTextToFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6483
     ImageEditor openOnClass:self andSelector:#saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6484
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6485
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6486
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6487
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6488
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6489
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6490
	constantNamed:#'GenericToolbarIconLibrary class saveTextToFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6491
	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
  6492
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6493
@@@@@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
  6494
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6495
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6496
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  6497
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6498
saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6499
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6500
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6501
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6502
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6503
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6504
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6505
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6506
     self saveToFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6507
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6508
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6509
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6510
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6511
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6513
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6514
	constantNamed:#'GenericToolbarIconLibrary class saveToFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6515
	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
  6516
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6517
@@@@@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
  6518
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6519
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6520
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6521
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6522
search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6523
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6524
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6525
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6526
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6527
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6529
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6530
     self search28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6531
     ImageEditor openOnClass:self andSelector:#search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6532
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6533
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6534
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6535
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6536
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6537
	constantNamed:#'GenericToolbarIconLibrary class search28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6538
	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
  6539
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6540
@@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
  6541
@@@@@@@@@@@@@@@@@@@@@@@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
  6542
@@@@@@@@@@@@@@@@@_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
  6543
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6544
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6545
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6546
shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6547
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6548
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6549
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6550
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6551
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6552
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6553
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6554
     self shell28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6555
     ImageEditor openOnClass:self andSelector:#shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6556
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6557
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6558
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6559
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6560
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6561
	constantNamed:#'GenericToolbarIconLibrary class shell28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6562
	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
  6563
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6564
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
  6565
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
  6566
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6567
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6568
@@@@@@@@@@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
  6569
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6570
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6571
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6572
systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6573
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6574
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6575
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6576
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6577
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6578
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6579
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6580
     self systemBrowserClassHistory28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6581
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6582
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6583
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6584
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6585
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6586
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6587
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6588
	constantNamed:#'GenericToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6589
	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
  6590
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6591
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6592
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6593
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6594
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6595
??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
  6596
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6597
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6598
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6599
uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6600
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6601
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6602
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6603
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6604
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6605
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6606
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6607
     self uiPainter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6608
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6609
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6610
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6611
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6612
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6613
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6614
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6615
	constantNamed:#'GenericToolbarIconLibrary class uiPainter28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6616
	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
  6617
@@@@@@@@@@@@@@@@@@@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
  6618
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
  6619
@@@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
  6620
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6621
@@@@@@@@@@@@@@@@@@@@@@@@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
  6622
???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
  6623
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6624
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6625
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6626
workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6627
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6628
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6630
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6631
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6633
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6634
     self workspace28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6635
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6636
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6637
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6638
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6639
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6640
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6641
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6642
	constantNamed:#'GenericToolbarIconLibrary class workspace28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6643
	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
  6644
@@@@@@@@@@@@@@@@@@@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
  6645
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6646
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6647
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6648
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6649
????@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
  6650
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6651
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6653
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6655
eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6656
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6657
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6658
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6659
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6660
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6661
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6662
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6663
     self eraseXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6664
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6665
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6666
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6668
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6669
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6670
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6671
	constantNamed:#'GenericToolbarIconLibrary class eraseXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6672
	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
  6673
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6674
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6675
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6676
_(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
  6677
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6678
@@@@@@@@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
  6679
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
  6680
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6681
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6682
@@@@@@@@@@@@@@@@@@@@@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
  6683
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6684
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6685
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6686
redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6687
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6688
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6690
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6691
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6692
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6693
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6694
     self redoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6695
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6696
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6697
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6698
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6699
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6700
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6701
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6702
	constantNamed:#'GenericToolbarIconLibrary class redoXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6703
	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
  6704
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6705
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6706
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
  6707
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
  6708
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
  6709
@@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
  6710
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6711
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6713
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6714
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6715
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6716
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6717
undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6718
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6719
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6721
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6722
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6723
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6724
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6725
     self undoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6726
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6727
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6728
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6729
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6730
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6731
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6732
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6733
	constantNamed:#'GenericToolbarIconLibrary class undoXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6734
	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
  6735
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6736
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6737
[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
  6738
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
  6739
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
  6740
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6741
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6742
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6743
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6744
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @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
  6745
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6746
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6747
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6748
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6749
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6750
desktop32x32Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6751
    <resource:#programImage>
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6752
    ^ self desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6753
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6754
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6755
desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6756
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6757
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6758
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6759
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6760
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6761
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6762
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6763
     self desktop32x32Icon1 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6764
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6765
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6766
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6767
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6768
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6769
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6770
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6771
	constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6772
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6773
.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*7 G>W@@B3.+*:.+*:.+*:.+*:.+*:.+*:DHA?%89"##VTAY$"
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6774
#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
  6775
.+(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
  6776
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
  6777
 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
  6778
^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
  6779
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
  6780
''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
  6781
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
  6782
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
  6783
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
  6784
.+*:@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
  6785
@@@@@@@@A?@@@??8@_??>G????#????8????>O????#????8?????O????;????????????????????>?????O????3????<?????O????3????<?????O??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6786
??3????<_????G????!!????0_???@G??<@A??8@@_>@@@C8@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6787
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6788
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6789
desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6790
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6791
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6792
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6793
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6794
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6795
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6796
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6797
     self desktop32x32Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6798
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6799
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6800
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6801
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6802
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6803
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6804
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6805
	constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6806
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6807
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(: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
  6808
#(: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
  6809
,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
  6810
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
  6811
+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
  6812
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
  6813
!!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
  6814
 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
  6815
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
  6816
-+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
  6817
#(: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
  6818
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6819
@@@@@@@@@@@@@@@@@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6820
??9????>_????''????9????>_???? @@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6821
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6822
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6823
error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6824
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6825
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6826
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6827
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6828
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6829
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6830
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6831
     self error32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6832
     ImageEditor openOnClass:self andSelector:#error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6833
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6834
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6835
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6836
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6837
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6838
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6839
	constantNamed:#'GenericToolbarIconLibrary class error32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6840
	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
  6841
@@@@@@@@@@@@@@@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
  6842
@@@@@@@@@@@@@@@@@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
  6843
@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
  6844
@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
  6845
@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
  6846
@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
  6847
@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
  6848
@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
  6849
@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
  6850
@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
  6851
@@@@@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
  6852
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6853
@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
  6854
?? ????8G???<@???>@G???@@??? @G??0@@_?0@@A?0@@@@@@@b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6855
!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6856
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6857
warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6858
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6859
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6860
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6861
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6862
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6863
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6864
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6865
     self warn32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6866
     ImageEditor openOnClass:self andSelector:#warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6867
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6868
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6869
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6870
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6871
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6872
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6873
	constantNamed:#'GenericToolbarIconLibrary class warn32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6874
	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
  6875
@@@@@@@@@@@@@@@@@@@@@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@P@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6876
@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PD@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6877
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6878
@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
  6879
@@@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
  6880
@@@@@@@@@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
  6881
@@@@@@@@@@@@@@@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
  6882
@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
  6883
@ 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
  6884
@ 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
  6885
@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
  6886
@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
  6887
@@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
  6888
??@O???0G???>A???? ????<O????G????9????>??????????<b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6889
! !
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  6890
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6891
!GenericToolbarIconLibrary class methodsFor:'image specs-misc'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6893
DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6894
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6895
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6896
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6897
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6898
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6899
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6900
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6901
     self DirectoryUp22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6902
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6903
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6904
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6905
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6907
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6908
	constantNamed:#'GenericToolbarIconLibrary class DirectoryUp22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6909
	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
  6910
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6911
@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6912
@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6913
@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6914
@ @@@@@@@@@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
  6915
@@@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
  6916
@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@ HB@ @@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6917
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6918
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6919
@@@@@@@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
  6920
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6921
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6922
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6923
desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6924
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6925
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6926
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6927
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6928
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6929
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6930
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6931
     self desktop30x30Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6932
     ImageEditor openOnClass:self andSelector:#desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6933
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6934
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6935
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6936
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6937
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6938
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6939
	constantNamed:'GenericToolbarIconLibrary class desktop30x30Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6940
	ifAbsentPut:[(Depth8Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6941
.+*:.+*:.+*:.+*:.+*:.+*3T788,5MST5N^.+*:.+*:.+*:.+*:.+*_,;MSB#Z3T788,5MST5MS@K*:.+*:.+*: @>3T34@,;MSB#Z3T788^E8,Q4QS@JZ:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6942
&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
  6943
^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@
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6944
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^$:"
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6945
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
  6946
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
  6947
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
  6948
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
  6949
#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
  6950
#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
  6951
') ; 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
  6952
@@@@@@@@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
  6953
?>A???? _???0G??? A??>@@_?<@@G?@@@@<@@@@') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6954
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  6955
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6956
documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6957
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6958
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6959
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6960
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6961
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6962
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6963
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6964
     self documents26x26Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6965
     ImageEditor openOnClass:self andSelector:#documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6966
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6967
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6968
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6969
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6970
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6971
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6972
        constantNamed:'GenericToolbarIconLibrary class documents26x26Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6973
        ifAbsentPut:[(Depth8Image new) width: 26; height: 26; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6974
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)ZQ!!0IBP).
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6975
G)^WWX]PTA4@@@@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@@@ADQAA"MST''YTA(ZG0WO#9Q@@@@@@@@@@@@@E!!XJ7.Q$S>HA)RT%SFA YP0L3L@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6976
@@@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@@@B@ B):@ H-\9AUUXJB (JBOF-+@@@@@@@@@HB@J''(B@"53$EUU (JB (H<Z6,@@@@@@@@@B@"M@#4=
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6977
K@=Y%YT#G2D!!&VPZF @@@@@@@@@/K2$(@PDDM)AUUT]> 8LXYEYV@@@@@@@@@A,[^X0;N1U^VYVUR 1\WF5$Z&(@@@@@@@@@F1-8]0@@S''JPUUVB (JB #1A
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6978
PP@@@@@@@@@[F7!!7@@AN\)AUUXJB (JBODEA@@@@@@@@@E]W"0BJ"$4NVYVUW5=_W5<<_W4@@@@@@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@@@@GA2VI
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6979
NC!!4&E&U%U=_W5=_OEQT@@@@@@@@@@\GIX$8NGRXVYVUW5=_W5<<UEP@@@@@@@@@K"95II.[R06PUUVB (JB #2O#0@@@@@@@@@.K&AL&)("RCHKB1HRNS$9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6980
I!!$Y@@@@@@@@@IJRQYY0\D$4X4=O@89ST6$Y[6<@@@@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@@@B\''E-CY&Y6!!''D:N @@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6981
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 26; height: 26; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6982
@@@@@@@@@@@@@@@@C??0@@??<@@O??@@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6983
? @O? @@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6984
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6985
3196
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6986
fileOpenIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6987
    <resource: #programImage>
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6988
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6989
    ^ self loadFromFileIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6990
!
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  6991
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6992
greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6993
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6994
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6995
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6996
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6997
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6998
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  6999
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7000
     self greenThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7001
     ImageEditor openOnClass:self andSelector:#greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7002
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7003
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7004
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7005
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7006
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7007
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7008
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7009
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7010
@@@@@@@@@@@@A)<@@@@@@@@G( @@@@@@@@^/@@@@@@@@A9@@@@@@@@C)$@@@@@@@A)+<>]BM]0BZ(->&E''3&@I**J&DN];@@VZ*''G^DV] C%&Y8AY7,@@MQU
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7011
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]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7012
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7013
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7014
greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7015
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7016
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7017
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7018
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7019
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7020
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7021
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7022
     self greenThumbUpSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7023
     ImageEditor openOnClass:self andSelector:#greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7024
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7025
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7026
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7027
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7028
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7029
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7030
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpSmallIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7031
        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]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7032
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7033
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7034
greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7035
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7036
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7037
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7038
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7039
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7040
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7041
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7042
     self greyThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7043
     ImageEditor openOnClass:self andSelector:#greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7044
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7045
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7046
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7047
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7048
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7049
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7050
        constantNamed:'GenericToolbarIconLibrary class greyThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7051
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7052
@@@@@@@@@@ @@4\@@@@@@@@GE@@@@@@@@@\W@@@@@@@@A4@@@@@@@@@4P@@@@@@H@4E2]FAV]0AAEF\SH7X3@DDQPSHC]2@@]ADWI#H#\0@7]7LBM7H@@FY7
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7053
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]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7054
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7055
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7056
hideToolBarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7057
    <resource: #programImage>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7058
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7059
    ^ self hideToolbar8x24Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7060
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7061
    "Created: / 18-02-2007 / 14:52:15 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7062
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7063
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7064
hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7065
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7066
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7067
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7068
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7069
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7070
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7071
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7072
     self hideToolbar24x8Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7073
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7074
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7075
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7076
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7077
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7078
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7079
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7080
	constantNamed:#'GenericToolbarIconLibrary class hideToolbar24x8Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7081
	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
  7082
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7083
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7084
hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7085
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7086
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7087
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7088
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7089
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7090
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7091
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7092
     self hideToolbar8x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7093
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7094
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7095
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7096
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7097
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7098
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7099
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7100
	constantNamed:#'GenericToolbarIconLibrary class hideToolbar8x24Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7101
	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
  7102
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7104
hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7105
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7106
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7107
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7108
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7109
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7110
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7111
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7112
     self hideToolbarIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7113
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7114
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7115
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7116
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7117
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7118
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7119
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7120
	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
  7121
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7122
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7123
hideToolbarIcon10x26
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7124
    "This resource specification was automatically generated
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7125
     by the ImageEditor of ST/X."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7126
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7127
    "Do not manually edit this!! If it is corrupted,
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7128
     the ImageEditor may not be able to read the specification."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7129
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7130
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7131
     self hideToolbarIcon inspect
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7132
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7133
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7134
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7135
    <resource: #image>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7136
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7137
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7138
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon10x26'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7139
	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
  7140
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7141
    "Created: / 18-02-2007 / 14:52:07 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7142
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7143
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7144
hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7145
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7146
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7147
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7148
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7149
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7150
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7151
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7152
     self hideToolbarIconH14 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7153
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7154
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7155
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7156
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7157
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7158
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7159
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7160
	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
  7161
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7162
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7163
hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7164
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7165
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7166
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7167
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7168
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7169
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7170
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7171
     self hideToolbarIconH20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7172
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7173
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7174
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7175
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7176
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7177
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7178
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH20'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7179
	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
  7180
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7181
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7182
hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7183
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7184
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7186
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7187
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7188
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7189
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7190
     self hideToolbarIconH26 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7191
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7192
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7193
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7194
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7195
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7196
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7197
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH26'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7198
	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
  7199
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7200
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7201
languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7202
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7203
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7204
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7205
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7206
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7207
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7208
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7209
     self languages20x12Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7210
     ImageEditor openOnClass:self andSelector:#languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7211
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7212
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7213
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7214
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7215
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7216
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7217
	constantNamed:'GenericToolbarIconLibrary class languages20x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7218
	ifAbsentPut:[(Depth8Image new) width: 20; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7219
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
  7220
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
  7221
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
  7222
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7223
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7224
loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7225
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7226
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7227
    ^ self load22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7228
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7229
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7230
loadImageFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7231
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7232
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7233
    ^ self loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7234
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7235
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7236
redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7237
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7238
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7239
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7240
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7241
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7242
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7243
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7244
     self redThumbDownIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7245
     ImageEditor openOnClass:self andSelector:#redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7246
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7247
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7248
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7249
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7250
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7251
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7252
        constantNamed:'GenericToolbarIconLibrary class redThumbDownIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7253
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7254
@@@@@@@@@@@@@L3@!!;\@@@C6<J^7(@@H=-5*<Z);\@@]UUDJ^;(@@MH3N:<Z);\@H3MC^ F;(@@#MO$7);8WB@\#'')K0#;,@@AH @@@@@@@@B2@@@@@@@@@K
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7255
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]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7256
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7257
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7258
redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7259
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7260
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7261
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7262
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7263
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7264
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7265
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7266
     self redThumbDownSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7267
     ImageEditor openOnClass:self andSelector:#redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7268
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7269
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7270
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7271
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7272
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7273
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7274
        constantNamed:'GenericToolbarIconLibrary class redThumbDownSmallIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7275
        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]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7276
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7277
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7278
redoIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7279
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7280
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7281
    View styleSheet name = #winXP ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7282
	^ self redoXP28x28Icon
3139
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
    ^ self redo20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7285
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7286
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7287
saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7288
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7289
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7290
    ^ self save22x22Icon
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
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7293
saveToFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7294
    <resource: #programImage>
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
    ^ self save22x22Icon
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7297
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7298
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7299
smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7300
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7301
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7302
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7303
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7304
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7305
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7306
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7307
     self smallBugIcon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7308
     ImageEditor openOnClass:self andSelector:#smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7309
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7310
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7311
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7312
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7313
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7314
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7315
	constantNamed:#'GenericToolbarIconLibrary class smallBugIcon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7316
	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
  7317
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@3@@@@@@@@@@@3LS@@@@@@@@@@LSL2@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7318
@@@@@@@3LSL @@@@@@@@D3L2@@@@@@@@@CLSH @@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7319
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7320
@@@@@@@@@@@@@@@@@@#@@B_ @A? @O?@@C?@@G?@@G> @G>@@C=@@A4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7321
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7322
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7323
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7324
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7325
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7326
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7327
smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7328
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7329
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7330
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7331
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7332
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7333
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7334
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7335
     self smiley_veryAngry inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7336
     ImageEditor openOnClass:self andSelector:#smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7337
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7338
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7339
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7340
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7341
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7342
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7343
	constantNamed:#'GenericToolbarIconLibrary class smiley_veryAngry'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7344
	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
  7345
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
  7346
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
  7347
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7348
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7349
!GenericToolbarIconLibrary class methodsFor:'image specs-tools'!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7350
3075
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7351
addBufferIcon
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7352
    <resource: #programImage>
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7353
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7354
    ^ self addBuffer16x16Icon2
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7355
!
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  7356
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7357
browseItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7358
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7359
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7360
    ^ self browseIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7361
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7362
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7363
bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7364
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7365
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7366
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7367
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7368
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7369
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7370
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7371
     self bug2_25x25Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7372
     ImageEditor openOnClass:self andSelector:#bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7373
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7374
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7375
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7376
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7377
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7378
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7379
	constantNamed:#'GenericToolbarIconLibrary class bug2_25x25Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7380
	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
  7381
@@@@@@@@@@@@@@@@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
  7382
@@@@@@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
  7383
@@@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
  7384
@@@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
  7385
@@@@@@@@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7386
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7387
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7388
bugIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7389
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7390
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7391
    ^ self bug28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7392
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7393
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7394
closeIndicatorInTree
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7395
    <resource: #programImage>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7396
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7397
    ^ self closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7398
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7399
    "Created: / 19-12-2010 / 09:03:52 / cg"
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7400
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7401
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7402
copyIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7403
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7404
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7405
    ^ self copy20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7406
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7407
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7408
cutIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7409
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7410
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7411
    ^ self cut20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7412
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7413
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7414
debugItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7415
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7416
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7417
    ^ self debugIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7418
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7419
    "Created: / 20-02-2007 / 15:46:24 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7420
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7421
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7422
deleteIcon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7423
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7424
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7425
    ^ self delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7426
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  7427
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7428
doItIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7429
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7430
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7431
    ^ self doIt20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7432
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7433
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7434
downIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7435
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7436
    ^ self down22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7437
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7438
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7439
downRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7440
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7441
    ^ self downRight22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7442
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7443
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7444
inspectItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7445
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7446
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7447
    ^ self inspectIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7448
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7449
    "Created: / 20-02-2007 / 15:44:34 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7450
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  7451
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7452
leftDownIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7453
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7454
    ^ self leftDown22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7455
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7456
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7457
openIndicatorInTree
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7458
    <resource: #programImage>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7459
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7460
    ^ self openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7461
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7462
    "Created: / 19-12-2010 / 09:04:06 / cg"
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7463
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  7464
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7465
printItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7466
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7467
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7468
    ^ self printIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7469
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  7470
3558
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7471
removeTabEnteredIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7472
    <resource: #programImage>
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7473
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7474
    ^ self removeTabIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7475
!
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  7476
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7477
removeTabIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7478
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7479
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7480
    ^ self removeTab22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7481
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7482
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7483
undoIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7484
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7485
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7486
    ^ self undo16x16Icon2
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7487
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7488
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7489
upIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7490
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7491
    ^ self up22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7492
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7493
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7494
upRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7495
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  7496
    ^ self upRight22x22Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7497
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7498
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7499
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser'!
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7500
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7501
changesBrowserIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7502
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7503
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7504
    ^ self changesBrowser24x24Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7505
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7506
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7507
copyFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7508
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7509
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7510
    ^ self copy20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7511
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7512
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7513
cutFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7514
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7515
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7516
    ^ self cut20x20Icon2
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7517
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7518
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7519
deleteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7520
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7521
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7522
    ^ self erase20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7523
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7524
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  7525
desktopIcon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  7526
    <resource: #programImage>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  7527
3696
5a6e79b27976 desktopicon
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  7528
    "/ ^ self desktop28x28Icon
3865
489db7d50e1e desktop icon
Claus Gittinger <cg@exept.de>
parents: 3860
diff changeset
  7529
    ^ self desktop24x24Icon
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  7530
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  7531
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7532
diffIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7533
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7534
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7535
    ^ self diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7536
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7537
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7538
directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7539
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7540
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7541
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7542
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7543
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7544
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7545
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7546
     self directoryBookmarks20x20Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7547
     ImageEditor openOnClass:self andSelector:#directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7548
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7549
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7550
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7551
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7552
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7553
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7554
	constantNamed:#'GenericToolbarIconLibrary class directoryBookmarks20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7555
	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
  7556
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7557
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
  7558
@@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
  7559
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
  7560
@@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
  7561
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7562
3078
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7563
directoryBookmarksIcon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7564
    <resource: #programImage>
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7565
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7566
    ^ self directoryBookmarks20x20Icon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7567
!
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  7568
3063
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7569
directoryUpIcon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7570
    <resource: #programImage>
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7571
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7572
    ^ self upArrow20x20Icon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7573
!
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  7574
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7575
documentsIcon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7576
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7577
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7578
    ^ self documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7579
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7580
    "Created: / 25-10-2010 / 09:21:23 / cg"
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7581
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7582
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7583
dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7584
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7585
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7586
    ^ self dosWithoutText20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7587
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7588
3625
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7589
editApplicationIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7590
    <resource: #programImage>
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7591
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7592
    ^ self editIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7593
!
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  7594
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7595
editFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7596
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7597
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7598
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7599
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7600
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7601
editIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7602
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7603
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7604
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7605
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7606
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7607
encodingLockIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7608
    <resource: #programImage>
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7609
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7610
    ^ self padLockRedMiniIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7611
!
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  7612
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7613
fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7614
    "This resource specification was automatically generated
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7615
     by the ImageEditor of ST/X."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7616
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7617
    "Do not manually edit this!! If it is corrupted,
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7618
     the ImageEditor may not be able to read the specification."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7619
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7620
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7621
     self fileContents14x17Icon inspect
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7622
     ImageEditor openOnClass:self andSelector:#fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7623
     Icon flushCachedIcons
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7624
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7625
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7626
    <resource: #image>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7627
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7628
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7629
	constantNamed:'GenericToolbarIconLibrary class fileContents14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7630
	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
  7631
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7632
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
  7633
@@@@@@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
  7634
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7635
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7636
fileContentsIcon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7637
    <resource: #programImage>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7638
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7639
    ^ self fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7640
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  7641
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7642
fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7643
    "This resource specification was automatically generated
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7644
     by the ImageEditor of ST/X."
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7645
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7646
    "Do not manually edit this!! If it is corrupted,
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7647
     the ImageEditor may not be able to read the specification."
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7648
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7649
    "
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7650
     self fileImageContents14x17Icon inspect
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7651
     ImageEditor openOnClass:self andSelector:#fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7652
     Icon flushCachedIcons
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7653
    "
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7654
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7655
    <resource: #image>
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7656
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7657
    ^Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7658
        constantNamed:'GenericToolbarIconLibrary class fileImageContents14x17Icon'
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7659
        ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7660
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ HB@ HB@@@@@@HA0\GA0\GA0 H@@@@@@\GA0\IA0$GA0 @@@@@A0\GA0\GA0\GB@@@@@@GA0\G
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7661
A0\GA0\H@@@@@@\GA0$GA0\GA0 @@@@@A0\GA0\GA0\GB@@@@@@HA0\GA0\IA0\H@@@@@@\GA0\GA0\GA0 @@@@@B@\GA0XGA0 HB@@@@@@HB@ HA  HB@ H
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7662
@@@@@@ HB@ FB@ HB@ @@@@@BP$IBPXIBP$IBP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 133 60 36 0 206 0 174 218 230 0 137 0]; 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]
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7663
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7664
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7665
fileImageContentsIcon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7666
    <resource: #programImage>
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7667
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7668
    ^ self fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7669
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7670
    "Created: / 01-06-2010 / 17:35:40 / cg"
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7671
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  7672
3098
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7673
fileInIcon
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7674
    <resource: #programImage>
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7675
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7676
    ^ self fileIn20x20Icon3
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7677
!
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  7678
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7679
fitImageSizeToViewIcon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7680
    <resource: #programImage>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7681
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7682
    ^ self fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7683
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  7684
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7685
hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7686
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7687
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7688
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7689
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7690
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7691
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7692
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7693
     self hexToggle14x17Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7694
     ImageEditor openOnClass:self andSelector:#hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7695
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7696
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7697
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7698
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7699
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7700
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7701
	constantNamed:#'GenericToolbarIconLibrary class hexToggle14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7702
	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
  7703
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAP@E@@TEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPT@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7704
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
  7705
@@@@@@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
  7706
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7707
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7708
hexToggleIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7709
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7710
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7711
    ^ self hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7712
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7713
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7714
historyBackIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7715
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7716
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7717
    ^ self leftArrow20x20Icon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7718
!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7719
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7720
historyForwardIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7721
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7722
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7723
    ^ self rightArrow20x20Icon
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7724
!
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7725
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7726
historyIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7727
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7728
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7729
    ^ self history20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7730
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7731
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7732
homeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7733
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7734
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7735
    ^ self home28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7736
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7737
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7738
homeIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7739
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7740
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7741
    ^ self home22x22Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7742
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7743
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7744
makeIcon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7745
    <resource: #programImage>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7746
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7747
    ^ self make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7748
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7749
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7750
newDirectoryIcon
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7751
    <resource: #programImage>
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7752
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  7753
    ^ self newDirectory20x20Icon
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  7754
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  7755
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7756
newFileIcon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7757
    <resource: #programImage>
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7758
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7759
    ^ self fileNew20x20Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7760
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7761
    "Created: / 31-03-2011 / 10:57:39 / cg"
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7762
!
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  7763
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7764
pasteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7765
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7766
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7767
    ^ self paste20x20Icon
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7768
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7769
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7770
printerIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7771
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7772
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7773
    ^ self printer22x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7774
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7775
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7776
reloadIcon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7777
    <resource: #programImage>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7778
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7779
    ^ self reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7780
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  7781
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7782
reloadTextFromFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7783
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7784
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7785
    ^ self reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7786
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7787
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7788
saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7789
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7790
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7791
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7792
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7793
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7794
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7795
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7796
     self saveAsToFile32x22Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7797
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7798
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7799
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7800
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7801
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7802
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7803
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7804
	constantNamed:#'GenericToolbarIconLibrary class saveAsToFile32x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7805
	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
  7806
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7807
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
  7808
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7809
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7810
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7811
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7812
saveImageToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7813
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7814
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7815
    ^ self saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7816
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7817
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7818
saveTextToFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7819
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7820
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7821
    ^ self saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7822
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7823
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7824
searchFileIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7825
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7826
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7827
    ^ self search20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7828
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7829
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7830
searchIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7831
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7832
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  7833
    ^ self search20x20Icon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7834
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7835
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7836
shellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7837
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7838
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7839
    OperatingSystem isMSDOSlike ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7840
	^ self dosShellTerminalIcon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7841
    ].
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7842
    ^ self unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7843
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7844
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7845
stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7846
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7847
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7848
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7849
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7850
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7851
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7852
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7853
     self stxHomeIcon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7854
     ImageEditor openOnClass:self andSelector:#stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7855
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7856
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7857
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7858
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7859
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7860
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7861
	constantNamed:#'GenericToolbarIconLibrary class stxHomeIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7862
	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
  7863
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQICP!!DP@@@@@@DQICL4HQD@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7864
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
  7865
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
  7866
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  7867
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7868
unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7869
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7870
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  7871
    ^ self shellWithoutText20x20Icon
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7872
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7873
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7874
viewDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7875
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7876
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7877
    ^ self viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7878
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7879
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7880
viewNoDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7881
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7882
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  7883
    ^ self viewNoDetails16x16Icon
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7884
! !
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  7885
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7886
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ImageEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7887
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7888
loadImageFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7889
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7890
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7891
    ^ self loadFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7892
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7893
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7894
newImageIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7895
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7896
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7897
    ^ self newImage24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7898
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7899
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7900
saveImageAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7901
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7902
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7903
    ^ self saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7904
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  7905
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7906
saveImageAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7907
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7908
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7909
    ^ self saveAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7910
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  7911
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7912
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-Launcher'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7913
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7914
displayScreenIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7915
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7916
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7917
    ^ self displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7918
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7919
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7920
editorIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7921
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7922
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7923
    ^ self editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7924
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7925
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7926
fontIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7927
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7928
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7929
    ^ self font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7930
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7931
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7932
garbageCollectIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7933
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7934
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7935
    ^ self garbageCollect24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7936
    "/ ^ self garbageCollect28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7937
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7938
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7939
helpIcon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7940
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7941
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7942
    ^ self help28x28Icon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7943
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7944
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7945
helpIcon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7946
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7947
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7948
    ^ self help28x28Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7949
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7950
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7951
helpIcon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7952
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7953
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7954
    ^ self help28x28Icon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7955
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7956
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7957
imageEditorIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7958
    <resource:#programImage>
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7959
    ^ self imageEditor24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7960
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7961
    "Created: / 31-03-2011 / 11:07:30 / cg"
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7962
!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  7963
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7964
keyboardMappingIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7965
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7966
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7967
    ^ self keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7968
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7969
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7970
languagesIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7971
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7972
3719
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  7973
    "/ ^ self languages20x12Icon
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  7974
    ^ self languages22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7975
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7976
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7977
memoryIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7978
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7979
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7980
    ^ self memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7981
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7982
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7983
projectBuilderIcon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7984
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7985
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7986
    ^ self packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7987
!
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  7988
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7989
saveImageIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7990
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7991
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7992
    ^ self saveImage24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7993
    "/ ^ self saveImage28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7994
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7995
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7996
startChangesBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7997
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7998
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  7999
    ^ self changesBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8000
    "/ ^ self changesBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8001
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8002
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8003
startFileBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8004
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8005
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8006
    ^ self fileBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8007
    "/ ^ self fileBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8008
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8009
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8010
startImageEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8011
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8012
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8013
    ^ self imageEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8014
    "/ ^ self imageEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8015
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8016
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8017
startMenuEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8018
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8019
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8020
    ^ self menuEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8021
    "/ ^ self menuEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8022
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8023
3092
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8024
startNewFileBrowserIcon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8025
    <resource: #programImage>
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8026
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8027
    ^ self newFileBrowser24x24Icon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8028
!
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  8029
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8030
startNewSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8031
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8032
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8033
    ^ self newSystemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8034
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8035
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8036
startSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8037
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8038
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8039
    ^ self systemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8040
"/    ^ SystemBrowser defaultIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8041
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8042
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8043
startSystemBrowserOnHistoryClassIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8044
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8045
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8046
    ^ self systemBrowserClassHistory28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8047
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8048
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8049
startUIPainterIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8050
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8051
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8052
    ^ self uiPainter24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8053
    "/ ^ self uiPainter28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8054
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8055
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8056
startWorkspaceIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8057
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8058
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8059
    ^ self workspace24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8060
    "/ ^ self workspace28x28Icon
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8061
!
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8062
3171
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8063
stxHelpIcon
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8064
    <resource: #programImage>
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8065
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8066
    ^ self helpIcon2
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8067
!
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  8068
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8069
stxSettings24x24Icon
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8070
    <resource: #programImage>
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8071
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  8072
    ^ self stxSettings24x24Icon1
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8073
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8074
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8075
stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8076
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8077
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8078
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8079
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8080
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8081
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8082
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8083
     self stxSettings24x24Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8084
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8085
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8086
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8087
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8088
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8089
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8090
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8091
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8092
	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
  8093
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  8094
"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
  8095
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
  8096
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  8097
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8098
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8099
stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8100
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8101
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8102
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8103
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8104
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8105
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8106
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8107
     self stxSettings24x24Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8108
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8109
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8110
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8111
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8112
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8113
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8114
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8115
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8116
	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
  8117
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EAP@@@@@@@@@@@@@EAPB;.;.;.;.;,FA%APB;.;.;.;.;,FA @@B;.1F;.;.;,FA @@B;.1F;.;
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8118
,[,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
  8119
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
  8120
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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
  8121
!
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8122
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8123
systemBrowserIcon
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8124
    <resource: #programImage>
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8125
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  8126
    ^ self systemBrowser24x24Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8127
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8128
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8129
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-MenuEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8130
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8131
copyMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8132
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8133
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8134
    ^ self copyMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8135
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8136
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8137
cutMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8138
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8139
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8140
    ^ self cutMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8141
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8142
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8143
newMenuIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8144
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8145
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8146
    ^ self newMenu24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8147
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8148
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8149
pasteMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8150
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8151
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8152
    ^ self pasteMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8153
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  8154
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8155
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser'!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8156
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8157
addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8158
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8159
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8160
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8161
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8162
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8163
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8164
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8165
     self addBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8166
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8167
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8168
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8169
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8170
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8171
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8172
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8173
	constantNamed:#'GenericToolbarIconLibrary class addBreakPointIcon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8174
	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
  8175
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8176
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8177
addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8178
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8179
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8180
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8181
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8182
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8183
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8184
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8185
     self addBuffer13x11Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8186
     ImageEditor openOnClass:self andSelector:#addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8187
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8188
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8189
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8190
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8191
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8192
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8193
	constantNamed:#'GenericToolbarIconLibrary class addBuffer13x11Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8194
	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
  8195
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8196
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8197
addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8198
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8199
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8200
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8201
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8202
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8203
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8204
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8205
     self addBuffer16x16Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8206
     ImageEditor openOnClass:self andSelector:#addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8207
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8208
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8209
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8210
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8211
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8212
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8213
	constantNamed:#'GenericToolbarIconLibrary class addBuffer16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8214
	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
  8215
@@@@@@@@@@@ADQDPDQDQ@@D3L>@SL38@@SL38AL3O @@@@@@@@@@@@L3L3L3L3L@@3L3L3L3L0@CL3L6L3X3A L3L3M#M#M @3L3L3X6M @@@@@@@FY @@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8216
@@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
  8217
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8218
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8219
padLockBlackMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8220
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8221
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8222
    ^ self padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8223
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8224
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8225
padLockBlueMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8226
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8227
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8228
    ^ self padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8229
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8230
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8231
padLockGrayMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8232
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8233
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8234
    ^ self padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8235
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8236
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8237
padLockGreenMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8238
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8239
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8240
    ^ self padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8241
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8242
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8243
padLockRedMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8244
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8245
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8246
    ^ self padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8247
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  8248
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8249
removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8250
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8251
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8252
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8253
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8254
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8255
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8256
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8257
     self removeBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8258
     ImageEditor openOnClass:self andSelector:#removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8259
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8260
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8261
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8262
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8263
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8264
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8265
	constantNamed:#'GenericToolbarIconLibrary class removeBreakPointIcon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8266
	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
  8267
! !
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8268
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8269
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-classIcons'!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8270
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8271
applicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8272
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8273
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8274
    ^ self smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8275
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8276
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8277
autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8278
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8279
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8280
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8281
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8282
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8283
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8284
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8285
     self autoloadedClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8286
     ImageEditor openOnClass:self andSelector:#autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8287
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8288
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8289
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8290
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8291
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8292
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8293
	constantNamed:'GenericToolbarIconLibrary class autoloadedClassBrowserIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8294
	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
  8295
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8296
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8297
containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8298
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8299
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8300
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8301
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8302
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8303
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8304
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8305
     self containerClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8306
     ImageEditor openOnClass:self andSelector:#containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8307
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8308
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8309
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8310
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8311
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8312
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8313
	constantNamed:#'GenericToolbarIconLibrary class containerClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8314
	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
  8315
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8316
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8317
enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8318
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8319
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8320
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8321
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8322
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8323
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8324
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8325
     self enumTypeBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8326
     ImageEditor openOnClass:self andSelector:#enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8327
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8328
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8329
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8330
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8331
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8332
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8333
	constantNamed:#'GenericToolbarIconLibrary class enumTypeBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8334
	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
  8335
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8336
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8337
errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8338
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8339
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8340
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8341
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8342
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8343
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8344
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8345
     self errorClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8346
     ImageEditor openOnClass:self andSelector:#errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8347
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8348
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8349
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8350
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8351
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8352
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8353
	constantNamed:#'GenericToolbarIconLibrary class errorClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8354
	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
  8355
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8356
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8357
exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8358
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8359
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8360
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8361
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8362
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8363
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8364
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8365
     self exceptionClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8366
     ImageEditor openOnClass:self andSelector:#exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8367
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8368
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8369
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8370
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8371
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8372
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8373
	constantNamed:#'GenericToolbarIconLibrary class exceptionClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8374
	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
  8375
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8376
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8377
guiApplicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8378
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8379
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8380
    ^ self smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8381
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8382
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8383
libraryDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8384
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8385
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8386
    ^ self smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8387
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8388
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8389
nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8390
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8391
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8392
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8393
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8394
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8395
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8396
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8397
     self nameSpaceBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8398
     ImageEditor openOnClass:self andSelector:#nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8399
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8400
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8401
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8402
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8403
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8404
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8405
	constantNamed:#'GenericToolbarIconLibrary class nameSpaceBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8406
	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
  8407
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8408
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8409
notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8410
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8411
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8412
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8413
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8414
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8415
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8416
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8417
     self notificationClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8418
     ImageEditor openOnClass:self andSelector:#notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8419
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8420
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8421
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8422
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8423
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8424
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8425
	constantNamed:#'GenericToolbarIconLibrary class notificationClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8426
	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
  8427
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8428
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8429
queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8430
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8431
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8432
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8433
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8434
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8435
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8436
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8437
     self queryClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8438
     ImageEditor openOnClass:self andSelector:#queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8439
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8440
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8441
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8442
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8443
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8444
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8445
	constantNamed:#'GenericToolbarIconLibrary class queryClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8446
	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
  8447
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8448
3947
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8449
rubyClassBrowserIcon
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8450
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8451
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8452
    "
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8453
     self rubyClassBrowserIcon inspect
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8454
     ImageEditor openOnClass:self andSelector:#rubyClassBrowserIcon
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8455
     Icon flushCachedIcons
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8456
    "
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8457
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8458
    <resource: #image>
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8459
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8460
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8461
	constantNamed:'GenericToolbarIconLibrary rubyClassBrowserIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8462
	ifAbsentPut:[(Depth8Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3947
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8463
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
  8464
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
  8465
!
a122657cdc02 added: #rubyClassBrowserIcon
fm
parents: 3946
diff changeset
  8466
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8467
sharedPoolBrowserIcon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8468
    "This resource specification was automatically generated
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8469
     by the ImageEditor of ST/X."
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8470
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8471
    "Do not manually edit this!! If it is corrupted,
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8472
     the ImageEditor may not be able to read the specification."
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8473
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8474
    "
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8475
     self sharedPoolBrowserIcon inspect
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8476
     ImageEditor openOnClass:self andSelector:#sharedPoolBrowserIcon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8477
     Icon flushCachedIcons
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8478
    "
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8479
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8480
    <resource: #image>
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8481
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8482
    ^Icon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8483
        constantNamed:'GenericToolbarIconLibrary class sharedPoolBrowserIcon'
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8484
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@@@@@@@@@@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?<G?0_?A?<G?0_?A?<G?0_?@@@@@a') ; yourself); yourself]
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8485
!
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
  8486
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8487
smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8488
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8489
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8490
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8491
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8492
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8493
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8494
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8495
     self smallGrayPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8496
     ImageEditor openOnClass:self andSelector:#smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8497
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8498
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8499
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8500
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8501
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8502
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8503
	constantNamed:'GenericToolbarIconLibrary class smallGrayPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8504
	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]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8505
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8506
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8507
smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8508
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8509
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8510
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8511
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8512
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8513
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8514
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8515
     self smallGreenPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8516
     ImageEditor openOnClass:self andSelector:#smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8517
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8518
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8519
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8520
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8521
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8522
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8523
	constantNamed:'GenericToolbarIconLibrary class smallGreenPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8524
	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]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8525
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8526
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8527
smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8528
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8529
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8530
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8531
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8532
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8533
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8534
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8535
     self smallOrangePackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8536
     ImageEditor openOnClass:self andSelector:#smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8537
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8538
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8539
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8540
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8541
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8542
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8543
	constantNamed:'GenericToolbarIconLibrary class smallOrangePackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8544
	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]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8545
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8546
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8547
smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8548
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8549
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8550
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8551
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8552
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8553
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8554
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8555
     self smallYellowPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8556
     ImageEditor openOnClass:self andSelector:#smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8557
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8558
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8559
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8560
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8561
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8562
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8563
	constantNamed:'GenericToolbarIconLibrary class smallYellowPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8564
	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]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8565
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8566
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8567
startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8568
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8569
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8570
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8571
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8572
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8573
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8574
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8575
     self startableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8576
     ImageEditor openOnClass:self andSelector:#startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8577
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8578
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8579
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8580
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8581
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8582
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8583
	constantNamed:#'GenericToolbarIconLibrary class startableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8584
	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
  8585
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8586
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8587
testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8588
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8589
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8590
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8591
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8592
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8593
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8594
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8595
     self testCaseClassIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8596
     ImageEditor openOnClass:self andSelector:#testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8597
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8598
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8599
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8600
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8601
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8602
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8603
	constantNamed:'GenericToolbarIconLibrary class testCaseClassIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8604
	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]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8605
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  8606
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8607
testCaseFailedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8608
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8609
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8610
    ^ self redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8611
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8612
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8613
testCasePassedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8614
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8615
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8616
    ^ self greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8617
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8618
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8619
visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8620
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8621
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8622
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8623
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8624
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8625
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8626
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8627
     self visualStartableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8628
     ImageEditor openOnClass:self andSelector:#visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8629
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8630
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8631
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8632
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8633
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8634
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8635
	constantNamed:#'GenericToolbarIconLibrary class visualStartableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8636
	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
  8637
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8638
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8639
warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8640
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8641
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8642
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8643
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8644
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8645
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8646
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8647
     self warningClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8648
     ImageEditor openOnClass:self andSelector:#warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8649
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8650
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8651
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8652
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8653
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8654
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8655
	constantNamed:#'GenericToolbarIconLibrary class warningClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8656
	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
  8657
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8658
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8659
webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8660
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8661
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8662
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8663
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8664
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8665
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8666
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8667
     self webServiceClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8668
     ImageEditor openOnClass:self andSelector:#webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8669
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8670
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8671
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8672
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8673
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8674
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8675
	constantNamed:#'GenericToolbarIconLibrary class webServiceClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8676
	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
  8677
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8678
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8679
windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8680
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8681
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8682
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8683
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8684
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8685
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8686
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8687
     self windowClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8688
     ImageEditor openOnClass:self andSelector:#windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8689
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8690
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8691
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8692
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8693
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8694
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8695
	constantNamed:#'GenericToolbarIconLibrary class windowClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8696
	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
  8697
! !
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  8698
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8699
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-UIPainter'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8700
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8701
copyWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8702
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8703
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8704
    ^ self copy22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8705
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8706
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8707
cutWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8708
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8709
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8710
    ^ self cut22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8711
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8712
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8713
deleteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8714
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8715
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8716
    ^ self delete22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8717
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8718
3883
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8719
gridAlignIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8720
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8721
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8722
    ^ self gridAlign16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8723
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8724
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8725
gridIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8726
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8727
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8728
    ^ self grid16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8729
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  8730
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8731
loadFromMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8732
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8733
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8734
    ^ self loadFromMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8735
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8736
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8737
moveWidgetDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8738
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8739
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8740
    ^ self down22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8741
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8742
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8743
moveWidgetDownRightIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8744
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8745
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8746
    ^ self downRight22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8747
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8748
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8749
moveWidgetLeftDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8750
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8751
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8752
    ^ self leftDown22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8753
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8754
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8755
moveWidgetUpIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8756
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8757
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8758
    ^ self up22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8759
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8760
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8761
newWindowSpecIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8762
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8763
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8764
    ^ self newWindowSpec24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8765
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8766
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8767
pasteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8768
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8769
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8770
    ^ self paste22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8771
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8772
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8773
saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8774
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8775
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8776
    ^ self saveAsMethod22x22Icon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8777
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  8778
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8779
saveAsMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8780
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8781
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8782
    ^ self saveAsMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8783
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8784
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8785
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-misc'!
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8786
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8787
errorIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8788
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8789
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8790
    ^ self error32x32Icon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8791
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8792
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8793
newDataSetIcon
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8794
    <resource: #programImage>
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8795
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8796
    ^ self newDataSet24x24Icon
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8797
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8798
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8799
newRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8800
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8801
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8802
    ^ self newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8803
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8804
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8805
removeRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8806
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8807
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8808
    ^ self cutMenuItem22x22Icon
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8809
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8810
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8811
warnIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8812
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8813
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
  8814
    ^ self warn32x32Icon
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8815
! !
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  8816
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8817
!GenericToolbarIconLibrary class methodsFor:'image specs-versions'!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8818
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8819
versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8820
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8821
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8822
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8823
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8824
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8825
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8826
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8827
     self versionA12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8828
     ImageEditor openOnClass:self andSelector:#versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8829
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8830
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8831
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8832
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8833
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8834
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8835
        constantNamed:'SVN::IconLibrary class versionA12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8836
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8837
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<+KR8/LCD2L3<?O3<?J"T%IRX''JB0?O3<?O18 HRD!!H2P)O3<?O3<RE1\[F14_H#<?O3<?A@LLD1DQE!!0?O3<?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8838
O0HPCP(FB@TNO3<?O3<GF!!$XEQPMBS<?O3<?@@<NC ,KB0D?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8839
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 158 193 53 154 195 54 162 195 47 165 198 50 169 202 54 171 204 56 171 202 80 168 203 102 191 213 121 193 221 91 201 229 99 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O<@?0C?@O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8840
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8841
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8842
versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8843
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8844
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8845
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8846
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8847
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8848
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8849
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8850
     self versionA16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8851
     ImageEditor openOnClass:self andSelector:#versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8852
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8853
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8854
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8855
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8856
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8857
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8858
        constantNamed:'SVN::IconLibrary class versionA16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8859
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8860
DLQ;_W7F1<#R4-_T5]WZG2[%9._&:>/,;^;/<OG2<<T 7;Z:/K6<0LGA8NK#9N)9F-6(+*:1-[V5*;V>/;?"^A''P^*J#+[B0*KF7-;F+02 X2(2R%9^ ^*N%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8861
(:Z0+]0''E<&H H*J")JU%)ZU)9^''IQY-SFQ$"H"@ XFJ$)JR''"PRM$A@QU]XT5NB (RD Y0#B3\,LR9@QDQERT%WVE!!1H 1-TC$9LSD1K#8.QDUE[BDN[51[
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8862
VT=OO#T>K"8.KC8^CGY&YV!!"W%1[T%APTC)+GAON+I*X&I.[Z&%)W%9^\A4U6M;O3,;L3G]7]''I3]WT[@ADOBP$IBP$EAPTB@ ,V@P@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8863
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[30 49 18 35 64 22 53 108 28 58 107 28 59 107 28 57 108 28 59 108 29 59 109 29 59 110 30 60 109 29 61 110 30 60 106 33 63 106 37 62 106 38 59 103 43 67 108 28 70 87 32 70 101 35 64 106 35 69 106 34 68 106 35 70 100 40 68 108 41 77 112 43 82 115 39 86 118 39 94 121 45 75 117 54 71 126 50 72 123 50 74 126 50 103 117 41 98 124 43 80 129 54 87 133 53 98 132 47 106 136 45 111 140 47 109 131 49 119 146 52 124 150 50 111 167 50 106 171 49 108 170 50 108 170 51 109 171 51 107 169 52 105 171 53 106 170 52 106 169 54 108 170 52 111 171 53 108 172 53 111 173 55 107 162 63 107 167 62 108 170 57 105 173 56 107 175 56 107 175 57 109 174 57 109 175 57 109 173 58 108 170 60 112 171 53 114 170 52 112 172 53 115 173 52 114 172 54 117 173 52 116 172 53 118 173 53 117 173 54 120 174 53 120 174 54 121 175 54 121 174 56 108 176 54 108 176 55 107 177 56 108 177 56 109 178 57 111 179 59 125 177 50 124 176 51 126 178 51 123 176 53 124 176 54 124 177 54 112 177 58 113 179 58 113 179 59 118 179 58 117 180 57 118 181 56 116 181 58 119 182 58 117 178 62 117 183 60 126 179 56 125 178 58 123 185 57 127 186 57 121 184 60 121 184 61 122 185 60 125 185 61 108 172 64 116 174 67 115 168 69 113 172 69 118 174 76 113 176 70 125 179 65 123 183 70 123 183 71 124 184 71 125 182 74 125 183 74 124 184 72 131 155 47 138 159 53 146 189 44 146 165 61 144 168 60 146 169 61 130 182 48 131 182 50 131 182 51 132 183 49 129 178 52 131 178 53 132 179 53 131 180 52 129 181 54 131 182 54 131 183 54 134 184 51 133 184 53 134 185 54 139 187 48 136 186 50 142 187 50 136 185 53 138 185 52 136 186 53 139 187 52 138 187 53 141 187 53 142 187 54 140 188 52 143 188 52 130 188 56 131 189 56 133 190 56 128 187 61 135 184 63 129 188 60 141 188 60 146 188 48 145 188 51 144 189 51 147 189 50 148 190 49 150 190 50 151 191 50 151 191 51 145 189 56 154 192 45 152 193 46 158 196 44 159 197 47 137 193 55 150 192 50 154 192 49 152 193 50 152 193 51 157 194 48 156 194 49 158 196 48 159 197 48 159 197 49 166 198 43 160 195 49 160 198 48 167 199 51 169 199 49 170 198 51 170 199 53 171 199 53 163 200 48 165 200 50 174 203 57 175 203 58 175 203 59 168 202 63 141 159 72 149 167 68 147 172 66 149 174 71 152 173 75 129 179 70 138 184 65 130 187 75 131 187 75 131 188 74 134 190 73 137 187 72 146 188 65 149 191 64 154 174 81 154 175 81 154 175 89 158 174 89 128 181 87 156 176 87 144 186 87 160 175 91 163 176 89 139 193 75 158 196 67 157 193 69 145 196 77 168 201 69 177 204 64 177 207 68 183 208 69 186 211 72 190 214 79 190 218 95 193 221 77 194 221 80 195 221 81 196 223 86 194 218 92 197 224 89 201 226 93 205 227 99 206 229 104 207 230 110 210 233 115 215 236 118 220 239 126 226 243 131]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8864
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8865
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8866
versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8867
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8868
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8869
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8870
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8871
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8872
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8873
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8874
     self versionA24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8875
     ImageEditor openOnClass:self andSelector:#versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8876
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8877
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8878
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8879
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8880
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8881
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8882
        constantNamed:'SVN::IconLibrary class versionA24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8883
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8884
@",2L3T8MCP:O#(<OC0<O349M3,7M#XEG.[4;/G1<_O6=/W7>_''9>?/;?O3=??80G>O$9>#(:N#):^''/;^;0<OK5=?_8>O(0FMSH2</M3\7Q3]GW5=_W6-3!!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8885
8.K+9^0/G]''J,<C@0LCH0LCS2L#H2MOU6MWW7.(1GKB1.*65.LGA0\GA0\GA0\GN2\CH4>@.F:2/)Z6-+Z65.K.8.++@0LC@0LB=4=4-F96#(JJ#+Z6-+Z6-
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8886
+Z6;.;.;.;::1=X,FX.Z(I2\''I2#(:J"+Z6-+Z6-+Z6-.]@,FXVF&X&I&Y&Y&ZF!!(:N"(*N#+:>-+<H*E7A(!!(RD!!HRO&Y&Y&Y&Y&Y2\(:F );P)E%YJXGE9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8887
^W6D!!HR@"X&I"Y&Y$)&Y&[P''D4%AQ6A Y6=/]&=/]''ZC 8NC 8&I%JP&E$%AT4!!HT6E*\WE/[6=/[6=6]''6@!!I,$EDI]S5=PT5MSU5]\XVA''Y6]''Z&==Z'',(
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8888
E$%-YE=_UT9KR4!!HSEATU6E!!Y6)*ZG,%DDY4X65.X6Q_W55]T5APT5MSSD1SUFX"B4VH[F13YV9$YFQ$YVE#W5]ST5MSSE("C5J*%YFN!!8I<\61,[&9.[&Q$
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8889
YFQ$WVH#D5F2$I^X%YVQ$YFQ[G13\7M.[&Q2WU("DU/C*9:^%9^W&IVX&I"U$YE:^''),^E$!!EWW_6=KR3LR</K2<)*Z&)*Z&)*Z*-8D @4BJZ6-;W&Y&W&Y^
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8890
W%9^W%9^W%9Q_$PZ@@PFCP(IC@8NC@8LC@0LC@$IBP$LCP A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 10 4 0 21 0 16 31 1 26 46 7 30 55 9 45 56 0 33 62 1 24 66 0 34 64 12 18 70 0 25 68 0 26 66 19 26 69 0 33 68 0 28 71 1 31 69 15 29 69 22 39 68 8 29 72 1 34 70 9 29 72 10 39 69 16 36 72 11 36 73 20 51 72 6 46 74 15 42 74 27 50 77 10 54 76 18 57 78 12 64 79 15 63 83 10 51 88 34 47 90 28 54 97 35 48 99 35 64 98 30 58 101 38 73 99 25 77 102 29 66 107 37 81 105 25 85 109 29 88 109 44 90 114 34 94 117 29 96 118 21 102 118 23 102 119 32 100 122 26 111 123 45 108 125 38 108 129 34 112 128 34 116 127 49 116 129 57 111 133 38 113 132 59 112 135 47 119 132 60 116 134 54 116 135 62 114 137 49 118 136 56 118 148 84 103 159 57 102 161 65 103 165 45 116 158 86 112 160 79 107 162 80 111 165 47 106 167 47 110 163 75 108 165 62 105 167 56 107 168 48 108 169 49 101 171 50 104 171 42 106 169 57 115 166 71 113 166 77 109 170 51 107 170 58 101 172 59 117 165 84 110 171 52 110 169 72 108 169 79 104 171 73 122 166 72 111 172 53 109 172 60 111 170 74 105 174 53 118 171 53 112 173 54 106 173 75 111 174 62 107 176 55 114 175 56 115 173 77 120 174 56 119 174 64 108 178 57 122 175 57 124 173 71 116 177 58 114 177 65 110 179 58 124 176 50 127 172 85 123 176 58 112 180 51 111 180 59 120 176 73 133 171 85 125 177 51 118 179 59 116 179 67 124 178 60 121 180 53 119 178 81 113 182 61 127 179 53 130 175 87 133 178 53 129 180 45 122 178 95 115 184 63 135 179 55 129 181 55 134 177 83 128 181 63 122 183 63 124 181 77 131 182 47 138 176 90 136 178 77 124 184 56 132 183 48 119 186 57 131 183 57 127 185 49 125 185 58 139 182 50 133 184 49 132 184 58 127 186 59 134 185 50 129 187 51 128 187 60 135 186 52 134 186 60 134 184 81 136 187 53 141 183 81 131 189 53 142 186 53 139 188 45 138 188 54 145 187 46 144 187 55 144 185 76 148 189 37 130 191 71 140 190 56 147 189 47 146 189 56 129 192 79 137 193 49 145 187 85 148 190 49 131 193 73 147 190 58 151 186 86 153 189 58 138 192 73 156 190 40 150 189 73 151 192 51 140 194 75 137 194 89 153 194 53 151 194 62 154 195 44 158 193 53 142 196 77 157 196 35 154 195 54 161 194 45 162 195 47 156 197 47 156 194 79 146 198 72 141 200 73 164 197 49 158 199 49 157 199 58 165 198 50 160 200 50 164 198 59 167 199 41 149 201 75 171 197 51 161 201 41 166 200 52 166 197 83 173 199 53 152 204 78 169 202 54 167 201 93 171 204 56 171 202 80 177 203 58 172 205 57 168 203 102 177 205 68 158 210 83 184 204 69 176 206 84 181 208 71 165 211 93 181 209 80 188 209 73 191 211 76 181 214 105 189 216 78 193 215 95 191 213 121 189 220 65 193 219 73 194 221 84 193 221 91 199 220 92 198 221 100 202 222 86 203 224 96 199 226 88 205 226 98 201 229 99 205 228 106 203 231 101 206 230 115 208 231 109 206 234 104 212 235 113 221 237 124 215 239 123 220 242 120 217 242 134 226 244 137 226 247 146 235 253 145 241 254 154]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8891
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8892
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8893
versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8894
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8895
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8896
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8897
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8898
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8899
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8900
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8901
     self versionAB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8902
     ImageEditor openOnClass:self andSelector:#versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8903
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8904
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8905
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8906
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8907
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8908
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8909
        constantNamed:'SVN::IconLibrary class versionAB12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8910
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8911
_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=FS%AQUEUVV''=?_7=?O",+J284NT!!?_7=?_1<"H2L#JB$<_7=?_7<SFA \GA8 IE]XVU-RA@LMEAHRE15LST=O
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8912
T0HQC (FB@TOQ4%IR$,GF1(YE!!TNBTEBP4ME@A@OC0,KB0D;OS4?NG=?_7=?L3D*IRX&I21?_7=?_4@:N#X1LR4!!_7=?_7=DMS\2L"<0C@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8913
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 245 222 0 241 225 0 201 229 99 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8914
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8915
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8916
versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8917
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8918
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8919
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8920
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8921
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8922
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8923
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8924
     self versionABBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8925
     ImageEditor openOnClass:self andSelector:#versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8926
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8927
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8928
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8929
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8930
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8931
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8932
        constantNamed:'SVN::IconLibrary class versionABBase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8933
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8934
_7=?_4!!QU51]YF!!@_7=?_7<+H"T''KCQPN''=^Y6)+[&=0]A\_H!!!!?T30<OC=FSF@EA 4C_281L#H2NC%O@PDB@G<\H2L)JR4/L7E2\7U,B $TGQ,[HR)%Y&%)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8935
[P ZEQDLC0,VW6E!!X&LNJBX$HA8UDEYXVU%[AA$VE!!HRD ]NT%ITR7=?_7=?QTL;MSX6M35?_7=?_5UMST%CP380_7=?_7=ZQ4)DQDEBD0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8936
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[45 133 171 11 149 204 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 102 188 234 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 116 191 219 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 114 203 242 126 201 229 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 148 213 243 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 241 225 0 201 229 99 170 224 243 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8937
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8938
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8939
versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8940
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8941
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8942
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8943
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8944
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8945
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8946
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8947
     self versionABase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8948
     ImageEditor openOnClass:self andSelector:#versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8949
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8950
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8951
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8952
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8953
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8954
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8955
        constantNamed:'SVN::IconLibrary class versionABase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8956
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8957
_7=?_4UIR41MTEIC_7=?_7<5KB<1M#5HPG=NTUMTUUYWVBD)KBI?R$EAPTIDQ$<PDQ N_3 :N3,;O#=GB (MBG<&KR43L3\9O@LEBPE?EQP^I2T%J3PGA P@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8958
_1L$G10WF!!X C@0K@''<YL#@.J" _F7=?_7=?C2L HA4]GQI?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8959
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 117 155 0 123 166 48 114 148 9 133 194 0 137 204 17 135 197 0 141 202 0 143 204 45 133 171 29 139 201 11 149 204 33 143 199 39 146 202 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 102 188 234 158 193 53 154 195 54 116 191 219 162 195 47 165 198 50 149 189 203 169 202 54 137 196 220 171 204 56 171 202 80 114 203 242 126 201 229 168 203 102 133 208 236 146 211 240 148 213 243 191 213 121 193 221 91 161 220 245 201 229 99 170 224 243 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?0??C?<O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8960
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8961
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8962
versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8963
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8964
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8965
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8966
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8967
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8968
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8969
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8970
     self versionB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8971
     ImageEditor openOnClass:self andSelector:#versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8972
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8973
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8974
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8975
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8976
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8977
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8978
        constantNamed:'SVN::IconLibrary class versionB12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8979
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8980
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O20+KR0.K3@)O3<?O3<&H2T%I2 (
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8981
J#<?O3<?HQ0_HBH"H2P?O3<?O1\VFQ([GA0^O3<?O3<G@ $TEQTVD#<?O3<?C 0E@ LCA@X?O3<?O1 SD1@LC@ AO3<?O3<]C1DMCP(K@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8982
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[184 149 76 214 165 59 234 173 0 235 174 0 231 176 0 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 246 206 0 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 245 222 0 246 223 0 241 225 0 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@_8A? G>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8983
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8984
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8985
versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8986
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8987
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8988
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8989
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8990
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8991
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8992
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8993
     self versionB16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8994
     ImageEditor openOnClass:self andSelector:#versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8995
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8996
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8997
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8998
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  8999
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9000
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9001
        constantNamed:'SVN::IconLibrary class versionB16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9002
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9003
GRP H"L%]GU6;N;.:^/*@]#$8^K#9^_(<OG2</S6=Q0-4\KM3\/Q4=SU5]_ 9.<\KLV5.++B.++B0,KB3<?UF2:7(:N2-[V8.LR81LSB2!!$/*).['':N!!([J/
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9004
+;J5-\$XJ:&O#)R[&9:#&9>_(ZGHCB).SIFV$X*L"8:'')9"[6  )\C]FQ49KR8VE!!XVT%-$II7@6LS9DQD9NT$-LSH):BRY1MS(8NC 7OC0<P5EN^0\(\&Y"
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9005
W$Y^W$A@MSD1LW\FJLY[ZF](X&I"W59UT5M8AQ?F%5ZW%6)*Y5%YY''I"^PL!!7-7G1<]=_W6C XFA_HPD@!!\MCQTQDQDQEQTUEP<K@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9006
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[64 38 12 86 84 25 102 69 21 120 84 22 113 81 27 127 87 25 126 89 26 127 93 27 127 97 27 129 97 24 128 100 24 140 102 31 129 106 25 151 107 17 150 107 19 151 106 22 153 104 19 153 104 20 153 105 20 152 106 21 153 104 22 152 104 23 153 104 23 150 108 28 134 114 25 135 117 24 135 126 31 136 124 25 131 125 41 137 131 31 191 150 12 189 151 23 188 183 31 181 147 49 189 184 35 191 185 39 189 182 42 191 185 42 194 141 30 195 141 31 193 146 18 198 145 22 199 151 21 203 159 23 205 181 12 205 189 9 205 174 16 204 169 23 233 174 1 234 175 0 235 174 1 234 174 3 236 174 1 236 175 1 233 173 4 233 175 4 234 173 11 234 174 10 235 174 11 236 175 10 233 176 1 234 177 0 233 176 3 234 177 2 238 176 2 233 177 5 237 176 5 234 180 4 234 180 6 235 182 6 236 183 7 237 187 3 234 191 2 235 190 3 237 188 1 236 191 1 239 189 2 233 185 6 235 187 6 236 185 4 235 189 4 233 183 11 236 188 9 240 176 4 241 176 4 240 178 6 247 190 2 247 190 3 247 191 3 246 184 7 247 184 7 244 187 6 240 178 8 241 179 9 242 180 10 242 180 11 242 180 12 242 181 12 242 181 13 243 182 12 243 183 14 243 183 15 245 183 13 247 187 9 244 184 10 245 185 11 245 189 9 246 189 11 243 186 12 242 184 15 241 186 15 235 175 21 236 174 25 239 177 23 243 183 21 244 190 18 192 186 48 193 186 55 193 187 60 228 175 33 229 174 34 229 180 39 234 189 35 233 184 39 239 188 38 245 188 35 244 189 35 245 189 35 244 186 36 244 187 38 243 188 38 244 188 36 227 184 63 233 193 0 234 194 0 234 194 1 235 194 2 236 192 1 236 195 0 235 197 0 234 196 3 237 199 2 239 198 2 239 198 7 240 192 2 240 192 3 240 195 3 241 195 3 240 199 1 240 196 3 242 194 6 247 193 6 243 200 1 241 202 1 242 203 0 243 203 0 243 202 1 242 203 1 241 203 3 243 204 0 243 205 1 242 207 0 244 204 0 244 205 0 245 206 0 244 207 0 240 200 4 240 200 5 243 200 4 243 198 13 243 204 12 242 208 1 243 208 1 243 209 1 244 211 1 246 210 0 246 211 0 246 210 1 244 209 2 247 213 0 246 212 1 247 215 0 247 214 1 245 209 7 248 213 1 244 217 0 245 217 0 247 216 0 246 218 0 246 219 0 247 219 0 245 220 0 246 221 0 245 222 0 246 223 3 249 216 0 248 217 0 246 215 9 245 196 21 246 192 31 240 208 30 242 214 30 244 221 25 243 225 2 243 225 3 245 225 3 246 224 2 246 225 3 244 226 5 245 225 7 247 227 6 246 227 7 246 229 16 246 230 27 245 229 31 248 231 29 204 194 42 237 195 38 239 203 37 246 195 32 246 195 33 247 199 35 247 202 59 249 233 33 250 235 45 253 242 37 253 242 41 253 244 43 253 243 47 252 244 47 252 238 54 252 244 55 254 245 61 186 188 69 178 178 77 187 189 75 193 187 66 192 187 68 193 187 68 251 237 68 255 246 71 255 247 81 255 248 85 255 248 88 254 250 100 252 246 110 255 251 107]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9007
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9008
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9009
versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9010
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9011
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9012
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9013
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9014
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9015
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9016
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9017
     self versionB24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9018
     ImageEditor openOnClass:self andSelector:#versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9019
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9020
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9021
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9022
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9023
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9024
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9025
        constantNamed:'SVN::IconLibrary class versionB24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9026
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9027
GB$/KB00K2</MC 8NCX6M#X6LSL5L!!<BN?S0;.;0=_W8>OS4>_'';>?/;?/;<?=<QPN_(:N#(:N#*9>/.<OC3<?O4<//6>>0SO=7U5MSU5]WU5]/[7^C 8.K%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9028
9N''-:^LSO-SG2,3R3=KR4-KR4-WU5M/[7-/^8.XWOM":2\#H2L#J2,+J3MKS4-KT5MS\5^DTN,J5-KR8.++I2\''I2\#I2L+L4=SR5MDRN\Z+*:.++;R8.K*:
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9029
.,''I2\''I.,3H4L4RM;.])ZV+*:.+,KB0-["8.KR:,L#I1<DRK*2](*J%)ZV+*:.+*:.+*:./*;*8.+XOJ9^V%(*J")2!!)Y6")ZV%*:.%)Z.%/J8IJ''][\8JR
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9030
%)2E!!X"H"H>]''Y2"(ZF\,ZPIJE9JS%-; '')1\XVE"H"H"H"H''JFJ)(8GI5YGQ4YMS&A;^(E1!!XVE!!XVE!!X*M%W4KHU1JQ$YIRT9ST5- Y''I;\7NE!!XVM^7XM
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9031
HVQJRT%JR$)JR$)MST9ST5M&\&5:_&$IH6!!#X6MZUEQIRTYFRT%IRT%ISD5SVUTHIHY#X6M#X6M#X6M#UEQIRT%FRT%ISDPHI)&G G!!8[6=#X6M#X6M#X5)T
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9032
T$-KR$PLH)&R HB@ HB@^G!!8Z6M#X6M#X5)#YTDEHJ"V%(.@"8.@ H.K"W%.[&9/X6-+_$HDI\CK1K&3,;N)(9*Z&)*W%9FW&)^Y''$LDG*6L 7A<_G1''X&]''
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9033
Y6]*Z&E*]FIP,#4C@QTYFQ$[F!!(ZF!!(ZF!!(ZF!!(ZE!!4YF08@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 1 1 42 14 1 27 26 0 53 26 0 61 33 0 66 33 3 61 38 0 66 37 0 67 38 0 64 40 0 65 41 0 68 42 0 75 40 0 67 43 3 78 42 0 66 46 0 70 53 0 58 57 0 71 55 0 64 58 0 69 57 0 92 53 0 97 53 1 69 62 0 97 57 0 99 58 0 103 57 0 100 59 0 73 70 2 108 62 3 122 94 29 118 117 35 156 120 13 164 117 27 154 124 0 162 121 17 164 122 3 152 123 35 161 124 3 171 123 23 174 125 13 140 134 30 170 127 12 174 131 19 146 144 16 151 143 18 175 136 24 152 144 20 148 146 20 145 145 39 143 145 55 142 148 41 155 146 23 147 148 50 154 147 44 177 143 17 155 148 35 176 148 22 179 150 8 164 156 44 179 155 15 184 149 76 178 160 0 180 168 13 179 167 27 214 165 59 211 168 52 212 170 69 218 169 63 230 171 12 234 173 0 232 172 16 229 175 0 235 174 0 233 173 19 240 173 0 228 175 16 231 176 0 232 177 0 236 176 0 221 176 52 235 175 22 242 175 3 233 178 0 238 177 1 224 175 69 240 174 37 239 178 4 234 180 2 233 179 23 240 179 7 236 181 5 242 176 40 241 180 10 239 179 28 237 182 9 232 184 6 236 178 58 233 180 49 243 181 13 244 178 43 236 182 29 234 185 9 234 181 50 242 181 31 227 182 66 233 181 59 240 184 15 235 182 51 235 186 12 247 184 0 245 183 18 232 185 42 233 189 0 236 187 15 238 188 0 235 183 61 243 187 0 224 186 68 240 185 33 242 186 19 249 186 0 239 189 0 237 188 18 232 186 53 226 187 61 236 187 33 234 191 0 245 188 0 233 190 16 240 190 0 235 187 45 246 189 0 236 192 0 242 187 36 244 188 23 232 194 0 251 188 4 237 193 0 247 190 3 234 188 64 243 192 1 230 190 64 233 196 0 248 191 6 251 188 28 244 193 4 239 195 2 235 197 0 237 194 25 245 194 8 248 191 29 240 196 6 243 193 28 249 192 31 246 195 11 242 197 9 237 199 6 242 193 52 243 198 0 239 200 0 245 199 0 238 200 11 251 194 34 232 197 61 240 201 0 242 198 32 241 202 0 242 198 45 255 197 21 243 203 0 244 204 0 247 201 21 240 196 94 231 202 64 245 205 0 240 207 0 243 204 22 238 199 88 253 201 25 246 206 0 241 208 0 233 204 66 247 207 1 243 209 0 255 203 28 244 210 3 247 207 28 242 209 27 246 211 0 245 211 7 247 212 0 247 205 71 234 210 61 246 212 10 248 213 0 254 208 33 243 215 0 249 210 32 243 215 12 245 216 0 250 215 0 246 217 0 255 210 49 247 218 0 239 214 66 242 220 0 243 221 0 246 218 21 237 218 58 245 222 0 250 221 0 246 223 0 241 225 0 242 226 0 247 225 0 250 222 28 243 227 1 248 226 4 245 228 5 250 227 8 246 229 10 248 232 17 233 227 112 247 231 36 243 230 59 249 233 39 243 231 79 249 234 53 251 235 41 247 234 74 251 241 48 253 242 34 254 239 70 254 243 37 253 243 50 248 239 110 255 242 73 255 245 52 255 247 55 255 246 66 255 248 68 253 247 93 255 248 78 255 248 86 254 251 69 253 248 102 255 249 87 252 251 78 255 249 95 255 251 97 255 251 104 253 251 119 255 252 106 253 255 115 255 254 130]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9034
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9035
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9036
versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9037
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9038
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9039
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9040
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9041
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9042
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9043
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9044
     self versionBBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9045
     ImageEditor openOnClass:self andSelector:#versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9046
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9047
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9048
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9049
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9050
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9051
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9052
        constantNamed:'SVN::IconLibrary class versionBBase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9053
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9054
_7=?_3@7O$MER4<)_7=?_7<\FQ([GQ<6H7=?_7=?D!!DSEQXXFQ]?_7=?_0TJC@4NC1HK_7=?_7<@@PXGB@ IAG=?_7=?@%QSUUQVU5!!Q_7=?_0MMRT1LS%AP
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9055
T''=?_7<PQ4ADQ$!!HRT)?_7=?_3(9OC4?PDAB_7=?_7<&HB 5NC 9L7=?_7=?K"0$HBD!!H"U?_7=?_3,4MCD,KB\^_7=?_7=AK3H-KR(+E@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9056
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 126 187 4 132 193 17 135 197 0 143 204 45 133 171 0 146 201 7 146 208 13 147 209 11 149 204 25 153 208 31 155 211 65 148 187 33 156 212 38 159 214 42 161 216 46 163 218 83 160 206 51 169 218 55 168 224 67 167 217 184 149 76 58 173 223 61 175 225 96 168 202 65 178 228 80 177 228 92 179 225 93 180 226 75 186 235 95 181 227 214 165 59 102 188 234 234 173 0 235 174 0 231 176 0 116 191 219 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 114 203 242 126 201 229 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 246 206 0 148 213 243 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 246 223 0 241 225 0 170 224 243 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<@?0C?@O<@?8C? O>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9057
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9058
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9059
versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9060
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9061
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9062
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9063
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9064
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9065
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9066
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9067
     self versionBase16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9068
     ImageEditor openOnClass:self andSelector:#versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9069
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9070
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9071
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9072
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9073
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9074
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9075
        constantNamed:'SVN::IconLibrary class versionBase16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9076
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9077
ARP!!HRL%I"\0LSL4L#X5@TK.;^70</O4=_[6>_+;=1AA9NC^7.W%9._(:^3.<^($PMGL4=OU5=[V6=/\7^S!!HC:>0<OC0L''I3,?Q4-_W108/,J6-+[R9.+.<
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9078
0L''E3LXMK)& (:Z''):^,,[R6/+;AB212$YZU"9^\(:N%)::.''00TN$=)]XVD"(*R_Y&Y&Y8JD3(:N4Q_U6=5]WU5^IF]BQIHR$-EP4QHTV)+Y&&DT@\+Y55Z
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9079
VUUUU4YFR$]MUS0FJ&>CU6Y,U6Y]U6!!(S%T<@!!->^H*C"''=?_6=_U6Y&OPH(/*>##X2Q^W!!=^72J$3<DBB$-G!!(_GA(WGQ\VE!!TQ@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9080
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[9 43 68 33 57 70 7 65 94 8 66 94 16 64 93 42 74 91 6 68 101 6 73 103 20 72 106 16 78 107 20 84 116 31 89 119 21 87 120 36 90 117 40 98 124 56 108 127 71 107 120 14 100 138 3 102 154 5 103 153 6 109 158 10 107 152 12 107 152 15 105 154 14 106 154 15 105 156 15 105 158 15 109 158 18 106 159 17 108 157 17 110 159 22 108 158 44 103 129 49 108 132 49 109 133 50 111 135 57 105 128 54 112 136 61 113 138 61 117 141 40 111 154 38 114 157 1 108 160 9 108 162 5 114 162 25 114 163 20 120 166 30 127 172 66 118 141 71 120 142 77 120 137 74 120 140 76 120 141 80 119 130 82 122 134 9 129 179 1 128 189 1 131 191 2 130 191 5 130 191 9 128 184 19 132 182 37 132 177 35 135 183 44 144 188 67 151 191 95 152 181 5 131 192 2 134 195 7 132 193 3 133 198 5 133 197 6 133 196 6 134 198 7 135 199 9 133 195 9 134 196 9 133 198 8 134 199 1 137 198 15 138 193 15 136 197 12 137 199 2 135 200 3 135 200 5 133 200 3 136 201 1 139 202 5 136 202 7 137 202 6 138 203 4 140 201 0 138 204 0 139 205 0 140 205 0 142 204 0 143 204 2 143 204 1 140 207 0 141 207 3 143 207 5 142 205 5 140 207 9 138 203 13 139 201 10 143 204 20 137 199 18 140 201 3 144 206 6 144 205 7 144 205 5 144 206 4 145 206 7 145 207 13 145 203 8 145 205 8 147 207 10 147 206 15 144 206 11 149 207 13 148 207 15 149 207 13 150 207 17 147 203 18 147 205 19 148 207 20 152 207 4 146 209 4 147 209 6 146 208 10 146 208 10 147 209 14 146 208 11 148 210 10 149 210 11 149 210 15 149 208 13 148 210 13 151 210 14 153 211 12 152 212 14 155 213 17 144 210 19 149 209 16 150 209 19 151 208 21 150 208 24 146 208 22 152 208 20 152 211 18 152 212 20 154 213 25 153 208 28 155 209 29 155 211 30 155 210 31 155 213 36 142 192 41 150 196 51 157 206 33 157 210 33 157 213 35 157 213 33 158 213 35 159 215 37 158 214 25 160 213 40 162 213 41 162 213 40 161 214 41 160 215 47 164 213 47 165 214 46 166 215 45 163 218 43 167 223 49 162 215 53 163 215 49 166 215 48 163 216 50 164 216 48 164 220 60 166 218 60 167 221 62 167 220 51 169 218 52 170 219 55 171 220 57 171 221 61 168 221 61 169 223 59 173 223 61 173 223 73 162 207 66 170 220 68 169 220 69 171 221 73 172 223 87 170 213 96 180 220 67 173 224 64 174 224 66 175 226 77 175 224 76 174 225 77 174 225 65 177 227 65 177 228 68 179 229 70 176 230 70 180 230 79 176 225 82 177 227 81 178 227 85 179 228 82 180 228 81 180 231 86 180 230 87 181 231 88 182 232 89 184 233 92 191 236 97 189 230 99 190 230 98 190 232 108 195 231 98 194 235 103 193 233 99 193 237 104 192 232 110 194 232 120 196 234 123 199 237 123 204 241 141 212 233 131 207 244 134 213 244 134 214 245 137 211 243 139 211 242 140 216 245 145 219 246 145 218 247 146 219 248 148 220 248 154 222 248 158 224 249 176 227 238 160 226 250 168 229 251 179 232 248 182 236 250]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9081
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9082
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9083
versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9084
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9085
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9086
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9087
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9088
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9089
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9090
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9091
     self versionBase24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9092
     ImageEditor openOnClass:self andSelector:#versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9093
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9094
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9095
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9096
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9097
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9098
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9099
        constantNamed:'SVN::IconLibrary class versionBase24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9100
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9101
@!!LNDADQE!!XVF!!0_H2D$H2@ H18"H!!8AO=SZ6]''\7^C"8.[&9.#*;N?2;_W6>]HXU^''.;.;.<OS4=OS4=?_8>O#;?O;=?>\RTMOM3L3K2<3M3<?Q5=/^8^W)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9102
9.[1:=T]Q<N:.[&8.K?A/\GA1LSG1<+J5-#$7<8VR*:.,+N6-+&9.[2<0LC@0LC@0<#B4L$ON:J*****+:.+*;N1-[V5-;.;0LB=1+8VN*J\)JF!!)JR#*J"+
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9103
*:6-,[V5-+&9/;@MNIBQ$)JY$)JY''):^(:N#*J"/)+J/-I4LNXNK#H.N!!)JT$)JR%).[&Y.&)*J&*YLTM6&H"H"H"H.N#(:N#9BP$IZV&*JZ&8(UMU5,\8E9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9104
 V=2^XRH"8.K"8:O#9*V%''4UMT%HV6I1\WE1\W9/^XNC (NH"H.K#G@YM$EAP45_W&11[7E1^GM8\7M: (M3"VLULDMCRDMAP45[V6I"X&I"[F1,X''91_5 K
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9105
LDMQUEEMRDMCPUQTW6!!+]&I,[HE5[D0KLU)ST5M(W5)TTT5MTUEQUE)SW6-SYC4JL65ST5MST5MST5MSS$9NS$9HQD9DRC8JLVI1[FI"X&I WE1ST5M[ZF!!_
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9106
UEQNS30GLFI,\V11\W!!,X&I"Y&I!!W%9^T5MSWS0HLH]:^&93[798[G9/\V1,X&I!!WFA\Y30EMIF,%9RK_G%9\&=/[6=1[&91[GV@]DHDJ9>6+)2P"8"A!!7=?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9107
_7=?_7=?\7Q.^4@CA"X-I2\''I2</JR$)JR (JB (K"4,J"T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 10 28 0 14 26 0 23 36 0 29 57 1 32 55 0 32 58 0 34 61 3 34 57 0 35 56 0 36 63 0 37 64 0 41 63 3 45 67 0 47 68 5 46 69 6 47 70 0 50 72 0 51 73 15 48 60 17 47 65 9 49 72 0 51 79 0 53 74 0 53 75 25 47 61 2 53 81 13 51 74 1 55 77 4 57 79 15 55 72 23 55 68 7 59 81 19 58 76 12 61 83 25 59 67 21 60 77 23 61 79 5 67 94 6 75 114 0 78 122 0 80 124 0 80 130 0 82 120 25 76 110 0 84 122 17 80 119 0 85 123 20 80 125 2 85 129 0 86 135 0 88 137 0 90 139 26 85 125 1 97 141 22 92 137 9 99 143 16 104 142 31 100 139 22 107 145 26 109 147 16 117 155 0 123 166 22 117 161 73 108 128 48 114 148 0 126 187 40 118 156 0 128 189 0 128 196 0 129 190 0 130 191 31 124 162 0 131 192 0 132 187 32 125 163 0 131 198 20 129 172 4 132 193 0 133 200 3 134 189 57 122 156 9 133 194 0 135 202 0 137 204 13 134 196 66 123 152 0 138 199 0 138 206 41 130 168 0 139 207 17 135 197 0 140 201 0 140 208 16 137 192 0 141 202 20 136 198 0 141 209 0 142 203 0 143 204 45 133 171 23 137 199 0 144 205 0 144 211 23 139 194 26 138 200 0 146 201 2 145 206 29 139 201 7 146 208 31 140 202 5 148 203 0 150 210 52 138 176 13 147 209 0 151 211 11 149 204 33 143 199 18 146 214 36 142 204 0 152 212 17 148 210 0 153 213 15 150 205 33 146 195 0 154 214 47 143 187 21 149 211 39 146 202 41 145 208 24 150 212 22 152 207 25 153 208 28 152 214 28 154 209 1 162 216 47 150 207 31 155 211 45 152 202 65 148 187 33 156 212 32 159 208 35 158 213 38 159 214 40 160 215 42 161 216 55 158 208 40 163 211 73 155 194 44 162 217 42 164 213 46 163 218 28 168 223 44 165 214 47 166 215 49 165 221 62 163 214 51 166 222 87 159 193 50 168 217 83 160 206 64 165 215 51 169 218 55 168 224 53 170 219 67 167 217 58 170 227 68 168 218 56 172 221 58 173 223 80 168 213 71 170 220 60 174 224 62 173 229 61 175 225 64 174 231 74 172 223 96 168 202 63 176 226 75 173 224 76 174 225 85 173 218 65 178 228 78 175 226 67 180 229 77 178 222 80 177 228 82 178 229 70 182 231 83 179 230 81 181 226 105 176 211 92 179 225 85 181 233 93 180 226 84 184 228 75 186 235 95 181 227 87 183 234 94 184 223 98 184 230 89 188 232 106 188 222 102 188 234 100 190 229 101 191 230 104 193 232 116 191 219 105 194 233 107 196 235 114 196 229 149 189 203 102 199 244 137 196 220 135 198 215 113 202 241 128 199 234 114 203 242 126 201 229 134 199 228 130 201 236 128 203 231 131 205 234 134 204 240 117 209 242 133 208 236 128 209 243 143 208 238 145 209 239 123 215 247 133 213 247 146 211 240 161 210 223 148 213 243 144 214 250 156 215 239 155 218 235 158 217 241 163 217 235 142 223 255 161 220 245 149 223 252 154 223 246 170 220 246 151 225 254 153 227 255 170 224 243 176 225 238 161 230 253 163 232 255 181 231 244 166 235 255 172 236 253 190 240 253 184 242 254 193 243 255 193 248 253]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9108
! !
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
  9109
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9110
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9111
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  9112
version
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  9113
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.134 2011-08-31 08:57:01 cg Exp $'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  9114
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  9115
3946
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
  9116
version_CVS
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  9117
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.134 2011-08-31 08:57:01 cg Exp $'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9118
! !
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  9119
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  9120
GenericToolbarIconLibrary initialize!