MacOSXToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Sat, 22 Nov 2014 23:36:48 +0100
changeset 5155 7323f63aeef7
child 5167 f2c0d164d05f
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5155
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libwidg' }"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
XPToolbarIconLibrary subclass:#MacOSXToolbarIconLibrary
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Interface-Smalltalk'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!MacOSXToolbarIconLibrary class methodsFor:'documentation'!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2014 by eXept Software AG
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    ToolbarIconLibrary := MacOSXToolbarIconLibrary
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    Notice and Warning:
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
        only redefine existing icons here; never add ionly to here.
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
        For every icon-method here, there MUST be a corresponding (albeit
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
        possibly ugly) icon-method in GenericToolBarIcon.
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!MacOSXToolbarIconLibrary class methodsFor:'image specs'!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
checkToggleOffDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
     self checkToggleOffDisabledIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
     ImageEditor openOnClass:self andSelector:#checkToggleOffDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOffDisabledIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,CIBP$IBP$ID@CO@@@@@@@@@@;L!!X#H2LA
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
H2L#H1X3N0@@@@@@@@ ]O @8E!!XVE# "CBD[@@@@@@@@K2$(F@0LC@0LCB,NNR<@@@@@@@@%P34!!K@8NC 8NKSTJP@@@@@@@@A(YO3$DMST5MSTPP1$Z@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
@@@@G0\FDPTEASXEAQDFA1<@@@@@@@@;A1D6M"(*E3XB@!!DGN0@@@@@@@AHQB184MA$YMCP^B1DR@@@@@@@@I -CP#$5MST5NTICB2X@@@@@@@@MP2D(I2\''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
CB\+C"5CBP@@@@@@@DDK@C@UHBL#HAT0@@,O@@@@@@@@M2XKO3<?O3<?O4LWI#(@@@@@@@ADD1PTEAPTEAPTEAPSQ@@@@@@@@@@9K!!0\GA0\GA0\K#$@@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[235 235 235 241 241 242 210 211 210 123 123 123 223 224 224 210 210 210 208 208 208 206 206 206 120 120 120 169 169 169 217 217 218 214 214 214 232 232 232 168 168 168 228 228 228 153 153 153 222 222 222 209 209 209 154 154 154 110 110 110 97 97 97 239 239 239 237 237 237 213 213 213 230 230 231 218 218 218 132 132 132 119 119 119 199 199 199 229 229 228 215 215 215 140 140 140 240 240 240 227 227 227 235 235 234 241 241 241 126 126 126 124 124 124 162 162 162 231 231 231 229 229 229 225 225 225 212 212 212 230 230 230 227 227 228 226 226 226 202 202 202 127 127 127 238 238 238 234 234 234 190 190 190 188 188 188 217 217 217 224 224 224 211 211 211 116 116 116 236 236 236 223 223 223 117 117 117 146 146 146 144 144 144 225 224 225 233 233 233 220 220 220 125 125 125 152 152 152 221 221 221 219 219 219 197 197 197]; mask:((ImageMask new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@O@@@O@@@OC?<OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OC?<O@@@O@@@O') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
checkToggleOffEnteredIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
     self checkToggleOffEnteredIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
     ImageEditor openOnClass:self andSelector:#checkToggleOffEnteredIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOffEnteredIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,CIBP$IBP$ID@CO@@@@@@@@@@;L!!X#H2LA
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
H2L#H1X3N0@@@@@@@@ ]O @8E!!XVE# "CBD[@@@@@@@@K2$(F@0LC@0LCB,NNR<@@@@@@@@%P34!!K@8NC 8NKSTJP@@@@@@@@A(YO3$DMST5MSTPP1$Z@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
@@@@G0\FDPTEASXEAQDFA1<@@@@@@@@;A1D6M"(*E3XB@!!DGN0@@@@@@@AHQB184MA$YMCP^B1DR@@@@@@@@I -CP#$5MST5NTICB2X@@@@@@@@MP2D(I2\''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
CB\+C"5CBP@@@@@@@DDK@C@UHBL#HAT0@@,O@@@@@@@@M2XKO3<?O3<?O4LWI#(@@@@@@@ADD1PTEAPTEAPTEAPSQ@@@@@@@@@@9K!!0\GA0\GA0\K#$@@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[235 235 235 241 241 242 210 211 210 123 123 123 223 224 224 210 210 210 208 208 208 206 206 206 120 120 120 169 169 169 217 217 218 214 214 214 232 232 232 168 168 168 228 228 228 153 153 153 222 222 222 209 209 209 154 154 154 110 110 110 97 97 97 239 239 239 237 237 237 213 213 213 230 230 231 218 218 218 132 132 132 119 119 119 199 199 199 229 229 228 215 215 215 140 140 140 240 240 240 227 227 227 235 235 234 241 241 241 126 126 126 124 124 124 162 162 162 231 231 231 229 229 229 225 225 225 212 212 212 230 230 230 227 227 228 226 226 226 202 202 202 127 127 127 238 238 238 234 234 234 190 190 190 188 188 188 217 217 217 224 224 224 211 211 211 116 116 116 236 236 236 223 223 223 117 117 117 146 146 146 144 144 144 225 224 225 233 233 233 220 220 220 125 125 125 152 152 152 221 221 221 219 219 219 197 197 197]; mask:((ImageMask new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@O@@@O@@@OC?<OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OC?<O@@@O@@@O') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
checkToggleOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
     self checkToggleOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
     ImageEditor openOnClass:self andSelector:#checkToggleOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
A XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XF@BP @@@@@@@@@@@ I@@FA XFA XGGC$NC 8N
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
C 8NC#$5DPXFA XFA#,#L3$KB0,KB3$9AR4;A XFA XFFCH0DA@EL0TED1@4J1 FA XFA XYBSHUG3P4MCP#KQH"FPXFA XFA 0"N!!H2L#H2L#H+JRHOA XF
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
A XFM0H/AAXVE!!XVE P[@#\FA XFA X1CQXCJ"X&I"(*N@PMLPXFA XFA"\AH#((JB (JC()H D''A XFA XFGRX+H3@PDA@0MBL+I!!4FA XFA XWJ0TKC 8N
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
C 8NNPTRM XFA XFA#D&B08NC 8NC 8NB2X1A XFA XFKAPJG!!8^G!!8^G!!8JEC4FA XFA X>OA(ZF!!(ZF!!(ZF!!(<O XFA XFA X.BBD!!HRD!!HRD!!BB8FA XF
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
A XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA @a') ; colorMapFromArray:#[131 131 131 231 231 231 227 227 227 234 234 234 232 232 232 250 250 250 0 0 0 153 153 153 202 202 202 239 238 239 225 225 225 254 254 254 148 148 148 228 228 228 255 255 255 149 149 149 249 249 249 152 152 152 243 243 243 250 249 249 175 175 175 246 245 245 233 233 233 189 189 189 143 143 143 141 141 141 97 97 97 229 230 229 203 203 204 180 180 180 229 229 229 246 247 246 130 130 130 199 199 199 237 237 237 246 246 246 151 151 151 220 220 220 236 236 236 172 172 172 241 241 241 239 239 239 235 235 235 242 242 242 116 116 116 245 245 245 223 223 223 230 230 230 248 248 248 164 164 164 244 244 244 251 251 251 247 247 247 203 203 203 190 190 190 157 157 157 234 233 234 253 253 253 240 240 240 132 132 132 110 110 110 117 117 117 197 197 197]; mask:((Depth1Image new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@C?<@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@C?<@@@@@@@@@') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
checkToggleOnDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
     self checkToggleOnDisabledIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
     ImageEditor openOnClass:self andSelector:#checkToggleOnDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOnDisabledIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ABA0T@@@@@@@@@@@@@@@@@@@@@@5(#@ @@@@@@@A(@MCP4MCP4MCQEFBH@@@@@@@@NM1\QSUIR
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
T$5MI# ''N @@@@@@@@THJ"%[E1\WV3\UNB<E@@@@@@@@C3LKJ PDJPPKSAT+U0<@@@@@@@@0S!!IUURPPDCTUG48AL@@@@@@@@CIWL2YXOP4.VU %R4!!T@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
@@@@D3-WJDL?LQ%OO$-W@QL@@@@@@@@JRCX\RS<UES5QPCYHB @@@@@@@DQKJ%,WC3 8KU-AJ#MD@@@@@@@@CA@!!T $ Q14IU%H!!D@0@@@@@@@@,HS0[F1,9
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
L1,[E#0QD @@@@@@@@(DF1,[F1,[F1,[F0PJ@@@@@@@@R!!QWM#X6M#X6M#YWEA4@@@@@@@@^A$YFQ$YFQ$YFQ$XFG @@@@@@@@ANT5APTEAPTEAPT48@@@@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[142 142 142 222 222 222 209 209 209 145 145 145 236 236 236 132 132 132 110 110 110 88 88 88 230 230 230 248 248 248 164 164 164 233 233 233 180 180 180 218 218 218 165 165 165 143 143 143 234 234 234 243 243 243 190 190 190 157 157 157 175 175 175 60 60 60 253 253 253 240 240 240 32 32 32 123 123 123 163 163 163 254 254 254 232 232 232 117 117 117 197 197 197 82 82 82 244 244 244 242 242 242 136 136 136 52 52 52 174 174 174 183 183 183 130 130 130 77 77 77 219 219 219 237 237 237 235 235 235 140 140 140 189 189 189 176 176 176 216 216 216 194 194 194 141 141 141 119 119 119 148 148 148 228 228 228 131 131 131 160 160 160 229 229 229 196 196 196 61 61 61 214 214 214 161 161 161 221 221 221 250 250 250 73 73 73 122 122 122 58 58 58 231 231 231 238 238 238 103 103 103 81 81 81 172 172 172 37 37 37 97 97 97 95 95 95 224 224 224 191 191 191 116 116 116 227 227 227 92 92 92 245 245 245 223 223 223 57 57 57 199 199 199 217 217 217 246 246 246 202 202 202 149 149 149 74 74 74 247 247 247 225 225 225 59 59 59 68 68 68 46 46 46 239 239 239]; mask:((Depth1Image new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@@@@G@@@O@C?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@C?<@@@@@@@@@') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
checkToggleOnEnteredIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
     self checkToggleOnEnteredIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
     ImageEditor openOnClass:self andSelector:#checkToggleOnEnteredIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOnEnteredIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X08IR)]#X6M#X6M#X6M#X6M#X6M#%@<\$&M#X6M#X:IH*********!!Q]BG9#X6M#X6MU,XJ3,;N3
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
,;N3R ==*VM#X6M#X8 B)HJB (JB %HOC;DFX6M#X6M#VWPB@''):^''(B&A57T!!-#X6M#X6L6T+E=_PLB@''\]E%IRT6M#X6M#X7-R]A%''IEIRGV^N]EJ+X6M#
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
X6M#(31R#)M''DQE''DWQROFU#X6M#X6NOOGQ4#&]''Y15R]GP<,FM#X6M#X8E4]GP*F&]''@2)4]GP.X6M#X6M#)WP*#X5:AA&M#X4*]C1#X6M#X6L^J(6$)JPB
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
@*R$)I$*RVM#X6M#X46M +N3,;N3,;NB (5:X6M#X6M#+;FB,;N3,;N3,;NB,R5#X6M#X6M5+GM3\7M3\7M3\7N,]VM#X6M#X6M#Y"L#H2L#H2L#Y"A#X6M#
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X0@a') ; colorMapFromArray:#[164 202 233 168 217 253 116 148 174 76 106 130 43 58 73 189 235 246 33 53 147 143 195 239 14 14 32 103 103 103 169 217 253 114 173 222 123 182 231 36 48 60 232 232 232 46 46 46 50 56 61 50 68 82 117 175 224 155 194 214 48 49 134 223 234 246 40 51 60 60 94 123 147 199 243 58 77 95 58 92 119 33 63 155 52 52 52 27 44 58 78 138 203 162 210 251 223 223 223 93 165 222 160 209 250 199 199 199 32 47 59 158 205 244 195 243 254 133 183 225 151 201 245 139 193 238 107 148 183 163 209 248 222 234 245 117 118 119 50 111 188 200 247 254 129 149 196 196 220 240 189 238 254 112 176 227 161 210 252 147 199 244 27 68 160 109 169 219 168 204 235 130 187 234 115 178 229 196 244 254 61 125 197 114 122 130 158 199 234 144 190 228 65 79 92 171 207 236 216 230 243 180 227 254 45 53 60 98 168 224 128 182 228 24 43 58 49 50 142 88 144 206 88 88 88 131 187 235 143 195 240 112 144 178 197 220 240 127 186 234 199 246 251 136 179 216 107 136 160 30 70 160 92 164 221 89 96 165 199 246 254 182 210 235 195 218 239 30 62 155 117 171 217 222 234 246 148 199 243 5 5 37 107 173 225 157 207 249 189 235 254 36 56 73 97 166 224 0 0 0 111 174 227 38 90 174 202 202 202 24 43 57 45 61 74 170 203 233 130 187 235 177 224 254 165 199 230 139 193 239 136 180 218 198 245 250 126 181 227 189 234 246 219 232 245 97 97 97 104 143 176 197 197 197 196 219 240 73 97 117 198 245 251 174 207 237 118 147 180 31 78 167 189 215 237 33 47 59 129 129 136 178 225 254 165 208 228 44 107 186 141 168 190 223 235 246 206 223 240 59 93 122 33 48 61 156 205 248 32 53 147 114 176 228 199 247 254 103 150 191 38 55 68 120 157 190 84 116 143 39 98 179 173 207 236 158 206 248 209 209 209 29 46 60 145 145 145 194 217 239 124 182 232 132 132 132 46 61 74 132 165 194 220 233 245 106 172 225 116 177 229 138 184 223 117 174 223 180 228 254 198 244 250 175 207 236 88 89 163 34 87 173 137 167 190 53 120 194 117 175 225 183 230 254 44 53 61 85 92 161 52 54 145 34 80 167 110 110 110 46 55 77 37 61 81 116 117 118 45 100 181 94 119 140 200 248 254 157 178 196]; mask:((Depth1Image new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@@@@O@@@O@C?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@A?<@@@@@@@@@') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
checkToggleOnIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
     self checkToggleOnIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
     ImageEditor openOnClass:self andSelector:#checkToggleOnIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
        constantNamed:'MacOSXToolbarIconLibrary checkToggleOnIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
        ifAbsentPut:[(Depth8Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X08IR)]#X6M#X6M#X6M#X6M#X6M#%@<\$&M#X6M#X:IH*********!!Q]BG9#X6M#X6MULHQB&%.C
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
ER12OQB-*VM#X6M#X8!!,U72U]$81VKMD*I$FX6M#X6M#VS<@NDFP^ZE)PAZ1I1-#X6M#X6L6''(5(&@H>O%HMDY4KT6M#X6M#X7.&Q M=AF9Q#BP*\AJ+X6M#
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
X6M#(5R[M:9GF!!]''!!SM^HVU#X6M#X6NOX#*V"16S$6EZCI1E,FM#X6M#X8E$Z&5L#(ZF]@\)R8$.X6M#X6M#)T<5W3P%FW\_H(]\NS1#X6M#X6L^F@E?'':\S
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
 J]CZ0((RVM#X6M#X46QL#.J,">2"%X&XB-:X6M#X6M#+:PETEA8^G!!/(F=1 "5#X6M#X6M5+GM3\7M3\7M3\7N,]VM#X6M#X6M#Y"L#H2L#H2L#Y"A#X6M#
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X6M#X0@a') ; colorMapFromArray:#[164 202 233 168 217 253 116 148 174 76 106 130 43 58 73 189 235 246 33 53 147 143 195 239 14 14 32 103 103 103 169 217 253 114 173 222 123 182 231 36 48 60 232 232 232 46 46 46 50 56 61 50 68 82 117 175 224 155 194 214 48 49 134 223 234 246 40 51 60 60 94 123 147 199 243 58 77 95 58 92 119 33 63 155 52 52 52 27 44 58 78 138 203 162 210 251 223 223 223 93 165 222 160 209 250 199 199 199 32 47 59 158 205 244 195 243 254 133 183 225 151 201 245 139 193 238 107 148 183 163 209 248 222 234 245 117 118 119 50 111 188 200 247 254 129 149 196 196 220 240 189 238 254 112 176 227 161 210 252 147 199 244 27 68 160 109 169 219 168 204 235 130 187 234 115 178 229 196 244 254 61 125 197 114 122 130 158 199 234 144 190 228 65 79 92 171 207 236 216 230 243 180 227 254 45 53 60 98 168 224 128 182 228 24 43 58 49 50 142 88 144 206 88 88 88 131 187 235 143 195 240 112 144 178 197 220 240 127 186 234 199 246 251 136 179 216 107 136 160 30 70 160 92 164 221 89 96 165 199 246 254 182 210 235 195 218 239 30 62 155 117 171 217 222 234 246 148 199 243 5 5 37 107 173 225 157 207 249 189 235 254 36 56 73 97 166 224 0 0 0 111 174 227 38 90 174 202 202 202 24 43 57 45 61 74 170 203 233 130 187 235 177 224 254 165 199 230 139 193 239 136 180 218 198 245 250 126 181 227 189 234 246 219 232 245 97 97 97 104 143 176 197 197 197 196 219 240 73 97 117 198 245 251 174 207 237 118 147 180 31 78 167 189 215 237 33 47 59 129 129 136 178 225 254 165 208 228 44 107 186 141 168 190 223 235 246 206 223 240 59 93 122 33 48 61 156 205 248 32 53 147 114 176 228 199 247 254 103 150 191 38 55 68 120 157 190 84 116 143 39 98 179 173 207 236 158 206 248 209 209 209 29 46 60 145 145 145 194 217 239 124 182 232 132 132 132 46 61 74 132 165 194 220 233 245 106 172 225 116 177 229 138 184 223 117 174 223 180 228 254 198 244 250 175 207 236 88 89 163 34 87 173 137 167 190 53 120 194 117 175 225 183 230 254 44 53 61 85 92 161 52 54 145 34 80 167 110 110 110 46 55 77 37 61 81 116 117 118 45 100 181 94 119 140 200 248 254 157 178 196]; mask:((Depth1Image new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@@@@O@@@O@C?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@A?<@@@@@@@@@') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
radioOffDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
     self radioOffDisabledIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
     ImageEditor openOnClass:self andSelector:#radioOffDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
        constantNamed:'MacOSXToolbarIconLibrary radioOffDisabledIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
        ifAbsentPut:[(Depth8Image new) width:18; height:18; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
@@@@@@@@@C=PTC<@@@@@@@@@@@@@@C=\O@=WHA]@WC<@@@@@@@@@B"  UAHLCCD9A2 J@@@@@@@JN@4HHRD!!HRDLU T8B @@@C<2SC >AD$LL0PQM3!!FL#<@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
@A4ANQ<5@!!XQDQX^V@X;EQ4@T@8,IR,?R1,^G#UGU",-FP8@TDQTA!!4JO1L7M1L?B$HI@TQPTT)^W@(SM4,1LT,7D0(+K$)QTU-SC#=GV#8>O#9ZR5%MPU-Q
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
TET=L"L^E!!@DW1@VIC\0I5UP@C@@P3<VL2D!!HQ0XDQHF@C@@@CP/U0(PHRD!!HRD!!ABLKK3P@@E@_ED=RGBD!!HRD\O0LTG5@@@@AQJ"X"OTL>O$ ''H"X*TP@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
@@@@TSYAJTU]WTT)PSYQ@@@@@@@@@E@:A$8ZF$8FN%@@@@@@@@@@@@@@O5EBP%D?@@@@@@@@') ; colorMapFromArray:#[122 122 122 151 151 151 242 242 242 107 107 107 249 249 249 114 114 114 205 205 205 110 110 110 221 220 220 208 208 208 226 226 226 111 111 111 253 253 253 118 118 118 209 209 209 125 125 125 247 247 247 245 245 245 232 232 232 230 230 230 135 135 135 153 153 153 244 244 244 129 129 129 251 251 251 136 136 136 176 176 176 237 238 237 254 254 254 221 221 221 239 239 239 206 206 206 113 113 113 255 255 255 89 89 89 231 231 231 240 240 240 187 187 187 134 134 134 132 132 132 181 181 181 117 117 117 197 197 197 215 215 215 131 131 131 191 191 191 169 169 169 167 167 167 207 207 207 236 236 236 203 203 203 252 252 252 219 219 219 237 237 237 204 204 204 233 233 233 180 180 180 158 158 158 218 218 218 165 165 165 163 163 163 130 130 130 241 241 241 228 228 228 164 164 164 162 162 162 222 222 222 200 200 200 198 198 198 94 94 94 123 123 123 234 234 234 201 201 201 250 250 250 186 186 186 235 235 235 120 120 120 211 211 211 189 189 189 105 105 105 227 227 227 225 225 225 223 223 223 159 159 159 146 146 146 195 195 195 224 224 224 109 109 109 232 232 231 229 229 229 238 238 238 185 185 185 214 214 214 88 88 88 168 168 168 248 248 248]; mask:((ImageMask new) width:18; height:18; bits:(ByteArray fromPackedString:'@^@?C?0?G?8?O?<?_?>?_?>???>?????????????????_?>?_?>?_?>?O?<?G?8?C?0?@?@?') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
radioOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
     self radioOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
     ImageEditor openOnClass:self andSelector:#radioOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
        constantNamed:'MacOSXToolbarIconLibrary radioOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
        ifAbsentPut:[(Depth8Image new) width:18; height:18; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
@@@@@@@@@C=PTC<@@@@@@@@@@@@@@C=\O@=WHA]@WC<@@@@@@@@@B"  UAHLCCD9A2 J@@@@@@@JN@4HHRD!!HRDLU T8B @@@C<2SC >AD$LL0PQM3!!FL#<@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
@A4ANQ<5@!!XQDQX^V@X;EQ4@T@8,IR,?R1,^G#UGU",-FP8@TDQTA!!4JO1L7M1L?B$HI@TQPTT)^W@(SM4,1LT,7D0(+K$)QTU-SC#=GV#8>O#9ZR5%MPU-Q
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
TET=L"L^E!!@DW1@VIC\0I5UP@C@@P3<VL2D!!HQ0XDQHF@C@@@CP/U0(PHRD!!HRD!!ABLKK3P@@E@_ED=RGBD!!HRD\O0LTG5@@@@AQJ"X"OTL>O$ ''H"X*TP@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
@@@@TSYAJTU]WTT)PSYQ@@@@@@@@@E@:A$8ZF$8FN%@@@@@@@@@@@@@@O5EBP%D?@@@@@@@@') ; colorMapFromArray:#[122 122 122 151 151 151 242 242 242 107 107 107 249 249 249 114 114 114 205 205 205 110 110 110 221 220 220 208 208 208 226 226 226 111 111 111 253 253 253 118 118 118 209 209 209 125 125 125 247 247 247 245 245 245 232 232 232 230 230 230 135 135 135 153 153 153 244 244 244 129 129 129 251 251 251 136 136 136 176 176 176 237 238 237 254 254 254 221 221 221 239 239 239 206 206 206 113 113 113 255 255 255 89 89 89 231 231 231 240 240 240 187 187 187 134 134 134 132 132 132 181 181 181 117 117 117 197 197 197 215 215 215 131 131 131 191 191 191 169 169 169 167 167 167 207 207 207 236 236 236 203 203 203 252 252 252 219 219 219 237 237 237 204 204 204 233 233 233 180 180 180 158 158 158 218 218 218 165 165 165 163 163 163 130 130 130 241 241 241 228 228 228 164 164 164 162 162 162 222 222 222 200 200 200 198 198 198 94 94 94 123 123 123 234 234 234 201 201 201 250 250 250 186 186 186 235 235 235 120 120 120 211 211 211 189 189 189 105 105 105 227 227 227 225 225 225 223 223 223 159 159 159 146 146 146 195 195 195 224 224 224 109 109 109 232 232 231 229 229 229 238 238 238 185 185 185 214 214 214 88 88 88 168 168 168 248 248 248]; mask:((ImageMask new) width:18; height:18; bits:(ByteArray fromPackedString:'@^@?C?0?G?8?O?<?_?>?_?>???>?????????????????_?>?_?>?_?>?O?<?G?8?C?0?@?@?') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
radioOnDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   253
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
     self radioOnDisabledIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
     ImageEditor openOnClass:self andSelector:#radioOnDisabledIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
        constantNamed:'MacOSXToolbarIconLibrary radioOnDisabledIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
        ifAbsentPut:[(Depth8Image new) width:18; height:18; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
@@@@@@@@@@DB@ D@@@@@@@@@@@@@@@DCA@TFA0 D@0D@@@@@@@@@BP(KC@4NC0LPDQHI@@@@@@@ID1PUE!!\XFQ([GA4SBP@@@@D^G2@!!H"L$IRX''JB$*G D@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
@B,,KR8/LCD2L3P5M#\8NR,@@C(@N30=O#=@PTICQDUFQ3(@@$!!IR$-LST9OS49PSEER@D BT5QUU%]XVU)[V5)\VE5^W5QST6A!!X&M$YVY''Y6!!)Z&-,[VAS
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   268
@&9/\GE2\7Q5]WY3]7!!9^&8B@G-<_W9? HFB 8RE!!!!2G_G,@@H R"X*K#H6N#9BQ$)NTD( @@@JU%)^XFY&Z&92]'')>V%PH@@@AS(JF"(:R%)ZZ''(*F T0@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
@@@@T:")**.,+J.**Z!!S@@@@@@@@@@J-+*>0,J>.+PH@@@@@@@@@@@@@@UN1,ULA@@@@@@@@') ; colorMapFromArray:#[77 77 77 228 228 228 227 227 227 211 211 211 139 139 139 82 82 82 59 59 59 62 62 62 87 87 87 226 226 226 167 167 167 56 56 56 81 81 81 206 206 206 244 244 244 243 243 243 99 99 99 55 55 55 167 167 167 165 165 165 52 52 52 172 172 172 211 211 211 221 221 221 223 223 223 222 222 222 218 218 218 207 207 207 174 174 174 50 50 50 202 202 202 58 58 58 87 87 87 180 180 180 194 194 194 199 199 199 202 202 202 201 201 201 196 196 196 189 189 189 167 167 167 86 86 86 58 58 58 221 221 221 126 126 126 74 74 74 111 111 111 171 171 171 182 182 182 184 184 184 175 175 175 175 175 175 183 183 183 176 176 176 160 160 160 110 110 110 77 77 77 127 127 127 209 209 209 92 92 92 126 126 126 156 156 156 167 167 167 111 111 111 42 42 42 41 41 41 109 109 109 164 164 164 146 146 146 127 127 127 95 95 95 79 79 79 198 198 198 73 73 73 109 109 109 138 138 138 149 149 149 144 144 144 37 37 37 37 37 37 143 143 143 139 139 139 116 116 116 225 225 225 186 186 186 87 87 87 123 123 123 148 148 148 160 160 160 155 155 155 40 40 40 40 40 40 154 154 154 150 150 150 130 130 130 95 95 95 185 185 185 103 103 103 123 123 123 156 156 156 171 171 171 178 178 178 118 118 118 44 44 44 117 117 117 179 179 179 172 172 172 161 161 161 133 133 133 112 112 112 195 195 195 106 106 106 119 119 119 163 163 163 181 181 181 192 192 192 198 198 198 187 187 187 197 197 197 183 183 183 170 170 170 133 133 133 111 111 111 207 207 207 121 121 121 140 140 140 164 164 164 192 192 192 206 206 206 214 214 214 215 215 215 215 215 215 212 212 212 207 207 207 197 197 197 152 152 152 219 219 219 99 99 99 169 169 169 203 203 203 219 219 219 231 231 231 233 233 233 232 232 232 229 229 229 221 221 221 208 208 208 180 180 180 101 101 101 206 206 206 135 135 135 96 96 96 179 179 179 232 232 232 240 240 240 240 240 240 233 233 233 224 224 224 188 188 188 98 98 98 197 197 197 134 134 134 89 89 89 115 115 115 172 172 172 215 215 215 175 175 175 117 117 117 204 204 204 162 162 162 117 117 117 94 94 94 88 88 88 218 218 218 205 205 205 189 189 189 176 176 176 222 222 222]; mask:((ImageMask new) width:18; height:18; bits:(ByteArray fromPackedString:'@^@?C?0?G?8?O?<?_?>?_?>?_?>?????????????????_?>?_?>?_?>?O?<?G?8?C?0?@?@?') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
radioOnIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
     self radioOnIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
     ImageEditor openOnClass:self andSelector:#radioOnIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
        constantNamed:'MacOSXToolbarIconLibrary radioOnIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
        ifAbsentPut:[(Depth8Image new) width:18; height:18; bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
@@@@@@@@@G]EQW\@@@@@@@@@@@@@@G^LV0);-:A[#G\@@@@@@@@@YF)DB3&C#&ZW[YM$@@@@@@A$LJU''RJXS($)4BQX0Y@@@@G^BWVVP]SZ-G*\=@''E< ''\@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
@BJV[''@)N9<#%FMIWH<WD"H@@B8GKS]MCX56DI&U"U>Z,B8@QR<8\92RDPL>O LH$&!! @B=EQ;T3[205XU"X&E"AMZ<(,+UGQ3H!!*DD+\ E=_T@*!!HUUCCIG
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
QUB)"A4<^U:1,Q!!9*%FQT%AE@J.FU@Z6^!!0:F4L'''' V.!!*,@@H)WMCF#S7!!,U&HZ"5*3U8(@@DV!!I), -DH%_2R]G:P&(TT@@@AGS*1SR40OC79)T:1NQ0@@
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
@@@@Q1PUC&.G!!6,NEQQG@@@@@@@@@DTYQ QYVPQFFTT@@@@@@@@@@@@@]4\?O4]7@@@@@@@@') ; colorMapFromArray:#[33 85 163 90 126 156 129 178 220 21 42 57 189 189 189 130 187 235 114 178 231 54 77 148 92 158 211 151 180 214 70 77 150 59 81 154 79 120 171 121 180 229 117 117 117 185 226 240 30 45 59 93 159 212 117 127 165 208 227 245 204 204 204 162 162 162 27 47 140 27 88 170 158 208 250 218 218 218 187 234 254 180 227 254 179 226 254 112 178 231 175 208 238 158 197 233 143 190 230 64 113 168 221 221 221 143 184 220 200 246 254 208 255 255 135 135 135 171 218 253 66 149 216 129 183 227 135 192 239 122 185 234 90 165 224 27 109 189 209 209 209 198 198 198 162 164 189 125 181 232 185 185 185 34 99 177 91 102 112 107 175 229 172 207 236 60 145 213 34 79 162 197 207 229 181 227 254 145 192 233 137 194 241 159 198 232 23 42 57 222 222 222 89 125 154 102 172 228 199 246 254 177 224 254 37 52 140 227 227 227 205 205 205 225 225 225 193 216 237 137 187 231 202 223 242 103 119 133 147 181 202 103 171 225 197 197 197 184 232 254 195 195 195 123 184 234 96 114 138 89 89 89 95 152 206 72 150 216 200 245 254 167 167 167 27 44 60 176 176 176 142 191 234 132 136 178 114 174 223 34 56 143 159 209 251 62 146 212 46 136 207 109 169 217 196 242 254 146 194 234 226 226 226 26 103 179 204 212 232 147 178 213 78 157 219 106 121 133 163 166 192 94 94 94 200 247 254 38 51 138 28 82 168 54 144 213 42 131 201 26 102 177 134 191 238 35 131 204 188 213 235 167 202 234 30 46 60 228 228 228 197 245 254 152 204 247 169 218 253 46 53 138 34 57 143 33 48 62 152 183 200 208 254 255 229 229 229 108 168 216 202 202 207 239 246 254 125 186 235 109 176 230 121 121 121 88 88 88 56 137 209 90 163 221 219 219 219 174 219 253 211 211 217 82 120 151 238 245 253 42 130 199 146 190 226 76 149 213 91 166 224 163 165 191 143 184 219 117 178 228 117 125 164 80 99 164 27 44 58 80 118 150 26 115 190 90 98 107 76 156 219 192 236 254 158 208 249 148 194 234 75 82 153 206 206 206 207 226 245 166 214 252 93 100 107 26 50 144 205 226 243 168 204 236 56 142 213 90 110 136 141 195 241 207 207 207 134 134 134 176 209 238 115 162 210 93 166 225 53 82 148 152 197 235 45 107 179 96 103 113 188 234 254 186 186 186 151 204 248 49 56 140]; mask:((ImageMask new) width:18; height:18; bits:(ByteArray fromPackedString:'@^@?C?0?G?8?O?<?_?>?_?>?_?>?????????????????_?>?_?>?_?>?O?<?G?8?C?0?@?@?') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
scrollDownActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
     self scrollDownActiveIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
     ImageEditor openOnClass:self andSelector:#scrollDownActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
    ^ Icon constantNamed:'VistaToolbarIconLibrary class scrollDownActiveIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   312
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   314
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
@ADWEAPTEAPTEAPTEAP)D A@O"H,M#X6@PDARQX=LB$@EBH!!O4!!HRDUEQT<%C3DT@AP,O0)QQ4\EAPTEAB4&E@@TM$!!QG" (SD1LSA%AS!!P@ECYHQ1<VE"\''
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
I2\;ID8T@AP6RAXHJ L.P4QMGA1NE@@TM$ _E# GB1 BN2P$S!!P@ECYHJA<VP#$<I2=APT8T@AP6RB (G1<ZI1,YPTENE@@TM$ (JB (F1-LFTEAS!!P@ECX4
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
Q2 (JD1LSD0YM48T@AQJL3IPTE@YFQ$YH4-NE@@TMTXSGQ4]PTEAM4,NS!!P@CP$ @ATUET9NS$9NS!!@+@C(MEAPTEAPTEAPTEAPLA @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
                colorMapFromArray:#[ 203 226 236 211 239 250 69 137 173 105 160 189 111 201 239 131 209 242 152 178 198 30 75 99 35 88 116 189 217 232 198 234 249 50 125 165 64 116 156 79 126 162 98 177 211 109 198 235 139 179 201 153 177 195 162 186 204 171 219 239 24 89 138 201 224 234 204 236 250 64 114 153 80 144 178 108 196 233 18 46 61 141 213 243 157 211 233 170 217 236 176 225 247 192 231 249 206 231 241 221 243 251 238 249 253 105 192 228 134 201 228 138 212 243 161 203 221 163 221 245 175 225 247 43 94 132 49 123 162 60 112 152 234 247 253 104 190 226 130 176 200 139 208 238 157 201 223 167 211 230 175 225 246 190 231 248 201 235 249 218 241 251 231 246 252 102 185 220 14 34 45 22 55 72 163 183 199 161 217 241 37 94 124 189 230 248 204 222 233 211 239 251 69 120 158 102 186 221 13 31 41 145 185 207 157 193 212 159 220 245 174 223 244 186 229 248 202 236 249 211 238 250 227 244 252 100 182 216 111 202 240 143 184 206 158 199 217 158 219 245 173 222 243 187 230 248 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   325
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   327
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
scrollDownOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   333
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   334
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   335
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
     self scrollDownOffEntered1Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   339
     ImageEditor openOnClass:self andSelector:#scrollDownOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   341
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   342
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   343
        constantNamed:'VistaToolbarIconLibrary class scrollDownOffEntered1Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   347
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   348
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   349
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   350
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   351
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   352
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   353
@A8QC@4MCP4MCP4MCP4PE @QLTIBP$EAN#$8MSL.IA@@BTIBPS8=OCD.KR,%F2XN@@%APS<<N3$-J"$&G1($C @IPS<=N3$6J"\%H!!8YI@8@BTD?OS8?OSP1
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   354
LB8,FRPN@@%AO34EA1TXG"H]JQ$$C @IPS<=O0DDB@<LKB0YI@8@BTD?OS0=@@LFK"X&FRPN@@%AO349N3PBLB$^G!!$$C @IPS<=N3$6K3D,H!!8YI@8@BTD?
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   355
OS,9M"(''IRH^FRPN@@%AO309NCP)I"P!!GA $C @IO309MSP2I"P!!G!!,WI@8@D3D=N3$9NB4+J"$(I!!<T@B@SB (JB (KB ,KB0,RH0@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   356
                colorMapFromArray:#[ 52 52 50 56 56 60 68 70 70 80 78 80 100 100 100 112 112 110 120 118 120 144 144 140 148 146 150 152 152 150 152 154 150 156 154 150 156 158 160 160 158 160 160 160 160 164 162 160 164 166 170 168 168 170 172 170 170 172 172 170 172 174 170 176 178 180 188 188 190 188 190 190 192 192 190 192 192 200 192 194 200 196 196 200 196 198 200 200 198 200 200 200 200 200 202 200 204 204 200 204 204 210 204 206 210 208 206 210 208 208 210 208 210 210 212 212 210 212 214 220 216 214 220 216 216 220 216 218 220 220 218 220 220 220 220 220 222 220 224 224 230 224 226 230 228 226 230 228 228 230 228 230 230 232 230 230 232 232 230 232 234 230 232 234 240 236 234 230 236 234 240 236 236 240 236 238 240 240 238 240 240 240 240 240 242 240 244 242 240 244 244 240 244 244 250 244 246 250 248 246 250 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   357
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   358
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   359
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   360
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   361
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   362
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   363
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   364
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   365
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   366
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   367
scrollDownOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   368
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   369
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   370
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   371
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   372
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   373
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   374
     self scrollDownOffEntered2Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   375
     ImageEditor openOnClass:self andSelector:#scrollDownOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   376
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   377
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   378
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   379
        constantNamed:'VistaToolbarIconLibrary class scrollDownOffEntered2Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   380
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   381
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   382
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   383
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   384
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   385
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   386
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   387
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   388
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   389
@A<NBP$IBP$IBP$IBP$KGP@PN41KR4-KRT%IRT%HM@,@BT1EP#<?O28.K"4(HDDI@@%KP#48NC &I"X&H!!,:BP@IR3<8M#X6H2L#H18ZM0$@BT,?NC1@PB</
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   390
K2<,F#\I@@%KO3 EA1DSEQ$TJ1(7BP@IR3<8P@DDB@0JKBTZM0$@BT,?NC1@@@LFK2\ZF#\I@@%KO3 6OB<BK2(^F!!(7BP@IR3<8M#X6J"<*H18ZM0$@BT,?
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   391
NCX6M"L#H2L^FC\I@@%KNST2L#H^G!!8^GA\7BP@IR#L1LC@0F!!(ZFA\VM0$@D#9GQ$QDQC\7M3\7M2$M@BPRBP$IBP$IBP$IBP$OHP@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   392
                colorMapFromArray:#[ 12 38 52 13 41 57 17 56 76 20 66 91 28 91 124 32 106 145 34 113 155 45 148 203 46 151 207 60 127 177 66 161 212 71 123 162 76 166 214 89 143 184 92 144 183 93 147 188 97 149 188 103 179 220 105 154 191 128 192 226 141 198 229 143 199 229 148 192 216 152 198 222 155 201 226 155 205 232 156 202 227 159 206 232 160 208 233 162 186 204 164 213 239 166 191 209 166 215 241 167 194 214 168 218 245 169 219 246 174 195 211 177 213 233 181 224 247 183 222 242 185 226 248 187 202 213 187 227 248 192 221 237 197 228 245 197 231 249 198 231 249 200 232 249 207 229 242 209 231 244 211 235 247 212 236 248 213 226 235 213 237 250 214 238 251 219 221 223 220 240 251 222 241 252 223 225 227 223 234 242 223 242 252 226 242 252 227 235 241 227 244 252 229 244 252 231 234 236 233 246 253 234 234 234 238 239 240 238 248 253 240 240 242 244 245 246 250 252 254 251 253 254 253 253 255 253 254 255 254 255 255 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   393
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   394
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   395
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   396
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   397
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   398
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   399
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   400
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   401
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   402
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   403
scrollDownOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   404
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   405
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   406
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   407
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   408
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   409
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   410
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   411
     self scrollDownOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   412
     ImageEditor openOnClass:self andSelector:#scrollDownOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   413
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   414
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   415
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   416
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   417
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   418
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   419
	constantNamed:'VistaToolbarIconLibrary class scrollDownOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   420
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   421
@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHCAP HB@ H
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   422
B@ GA@TF@@DB@0 RD1PUE!!\XB@PEA @A@ LEB@4NC1@QB@\DAPX@@PHC@0THB ,LB@\CA@TF@@DB@0LCAP IB@\C@0PEA @A@ LC@0LGB@\C@0LDAPX@@PHC
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   423
@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @a') ; colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   424
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   425
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   426
scrollLeftActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   427
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   428
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   429
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   431
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   432
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   433
     self scrollLeftActiveIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   434
     ImageEditor openOnClass:self andSelector:#scrollLeftActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   435
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   436
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   437
    ^ Icon constantNamed:'VistaToolbarIconLibrary class scrollLeftActiveIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   440
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   441
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   442
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   443
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   444
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   445
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   446
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   447
@@@@@@@@@@@@@@@@@@@@@BHIK2</K2</K2</K2</BQ!!QI2$3Q4]GQ4]GQ4\TQ"T2K2$<GQHRD!!HRD!!HGS!!AOK2<3GQ0[DQDGT@\QDT4.I"</Q1H[NTL:N2P;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   448
P4LZNC@/K4\RDTL:N3UEN4MCF# 0K2=GD!!D:N3<#@C-CP1(8LB</D1$MP!!]@LR-B@PDVO L/K1LYCP9BAQ=JP DAE#8CK2<SFP4AC$H^R4HA@QX>@2</B@<M
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   449
@PDNP IB@PDVM@L/K3,6RQXVE"0DKAXVHD CK2<FCB(>O#8>O#8>MD K@2<=PT07@0LC@0LC@0LC@2EDKR /K2</K2</K2</K2=DB @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   450
                colorMapFromArray:#[ 105 160 189 111 202 240 143 184 206 158 199 217 161 217 241 37 94 124 188 230 248 201 235 249 211 238 250 69 120 158 104 128 146 98 177 211 109 198 235 131 209 242 141 213 243 158 219 245 174 223 244 186 229 248 202 236 249 211 239 250 227 244 252 248 248 248 108 196 233 18 46 61 153 177 195 159 220 245 173 222 243 187 230 248 198 234 249 210 239 251 69 137 173 80 144 178 105 192 228 139 179 201 152 176 194 30 75 99 35 88 116 189 217 232 203 226 236 210 227 237 66 117 155 238 249 253 104 190 226 130 176 200 139 208 238 162 186 204 171 219 239 24 89 138 201 224 234 50 125 165 64 115 153 234 247 253 102 185 220 14 34 45 138 212 243 161 203 221 170 217 236 176 225 247 192 231 249 204 236 250 221 243 251 72 123 161 102 186 221 13 31 41 22 55 72 154 197 220 163 221 245 175 225 247 43 94 132 49 123 162 218 241 251 231 246 252 100 182 216 111 201 239 145 185 207 157 193 212 167 211 230 175 225 246 190 231 248 206 231 241 211 238 251 70 121 159 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   451
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   452
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   453
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   454
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   455
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   456
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   457
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   458
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   459
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   460
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   461
scrollLeftOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   462
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   463
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   464
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   465
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   466
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   467
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   468
     self scrollLeftOffEntered1Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   469
     ImageEditor openOnClass:self andSelector:#scrollLeftOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   470
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   471
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   472
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   473
        constantNamed:'VistaToolbarIconLibrary class scrollLeftOffEntered1Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   474
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   475
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   476
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   477
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   478
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   479
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   480
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   481
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   482
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   483
@@@@@@@@@@@@@@@@@@@@@@=NC@1ZV%)ZC@0LC@0LS =NUQ 2L#H2L#H2L#H2L!!QNSVXKL"T%IRT>O#8>VD($L4AYL&TWE1\2Y#HWE2Q$U2]@B5 $U5]XL (2
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   484
U5]$X3@''PCH1U1X$R08&R1XVBQT0I4@%OQX=VA-HJE <O@ ;RR]@H2EGH%@^FT<"NS% T"@''PC0.D3(/S@@*K0TEG2,SI4AVQ5MEXP\ZQ@]EQQE^Q"]@B@X8
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   485
M3\-K$L.M3]^GV@''PFIE@14]GQ=TG14]M HRI4@:WQ1BP$IBP$IBMR%\KB]ATQ=_J2,+J2,+J2,+J1@@ACPMCP4MCP4MCP4MCP5[@P@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   486
                colorMapFromArray:#[ 162 162 162 185 185 185 191 191 195 197 197 201 207 207 207 210 210 213 215 215 218 224 224 226 230 230 231 232 233 234 112 112 112 243 243 244 148 148 148 158 158 158 55 55 55 195 195 195 198 198 200 203 204 207 210 211 212 215 215 217 226 226 226 229 230 231 234 234 235 240 240 240 244 244 244 146 146 146 157 157 157 51 51 51 190 190 193 196 196 199 78 78 78 208 208 211 217 218 218 224 224 225 229 229 230 233 233 234 238 238 239 242 242 243 144 144 144 155 155 155 177 177 177 187 187 191 199 199 199 204 204 206 209 209 210 213 213 216 221 221 223 226 226 228 234 234 234 238 239 240 243 243 243 153 153 153 174 174 174 188 188 192 194 194 198 202 202 205 207 207 210 214 214 216 220 220 222 228 228 229 232 232 233 237 237 238 241 241 242 248 248 248 151 151 151 171 171 171 188 189 192 198 198 198 205 205 205 206 206 209 214 214 215 218 218 220 100 100 100 233 233 233 238 238 238 242 242 242 118 118 118 150 150 150 165 165 165 191 191 191 69 69 69 202 202 203 207 208 210 211 211 214 217 217 219 228 228 228 231 231 232 236 236 237 240 240 241 244 244 245 149 149 149 164 164 164 186 186 190 192 192 196 200 200 203 205 205 208 212 212 214 216 216 219 226 227 228 231 232 233 234 234 236 241 241 241 245 245 245 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   487
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   488
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   489
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   490
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   491
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   492
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   493
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   494
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   495
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   496
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   497
scrollLeftOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   498
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   499
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   500
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   501
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   502
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   503
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
     self scrollLeftOffEntered2Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   505
     ImageEditor openOnClass:self andSelector:#scrollLeftOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   506
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   507
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   508
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   509
        constantNamed:'VistaToolbarIconLibrary class scrollLeftOffEntered2Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   510
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   511
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   512
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   514
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   515
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   516
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   517
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   519
@@@@@@@@@@@@@@@@@@@@@CH0F!!(ZF!!(ZF!!(ZF!!(ZLB &H3$/K2</K2</K2</IQ@@F#$.BDEAPTEAPTEAFQ $HQ(/BD,,KB07SC\,K@X5NBDZK4D,R$("KQX-
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   520
R$(+RQD!!F"=AKD("KPE@KT)JJ4$QHQ(/PR0"KP(LD25JR"-IDRDZBQ\DC#,TM$TNJR$CQ#<!!F $WACPNRD4]C"$)@4X?HQ(IE0P)M@8[O@8)JPMFO2DZBR@D
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   521
JR$4C#DNJR$C@#<!!F $>L0LC@04*CPLCG ,?HQ)CQ1UFQ$YFQ$YF@ ,''O2D\AP\OO3<?O3<?O3<?O1=BOTP!!HRD!!HRD!!HRD!!HREBN @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   522
                colorMapFromArray:#[ 92 144 183 13 41 57 155 201 226 164 213 239 181 224 247 207 222 233 213 237 250 231 234 236 232 246 253 251 253 254 12 38 52 152 198 222 28 91 124 183 222 242 200 232 249 223 225 227 227 235 241 238 239 240 248 248 248 103 179 220 20 66 91 159 206 232 32 106 145 198 231 249 212 236 248 222 241 252 60 127 177 66 161 212 100 152 191 143 199 229 160 208 233 187 202 213 197 231 249 52 110 153 223 242 252 229 237 245 244 245 246 253 253 255 98 150 189 148 192 216 166 191 209 169 219 246 197 228 245 211 235 247 220 240 251 229 244 252 238 248 253 253 254 255 97 149 188 141 198 229 165 190 208 168 218 245 187 227 248 209 231 244 46 151 207 227 243 252 240 240 242 254 255 255 117 142 160 17 56 76 155 205 232 176 200 218 185 226 248 219 221 223 45 148 203 227 244 252 71 123 162 250 252 254 94 146 185 128 192 226 156 202 227 166 215 241 34 113 155 207 229 242 214 238 251 225 242 252 233 245 252 76 166 214 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   523
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   524
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   525
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   528
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   530
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
scrollLeftOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   534
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   537
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   540
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   541
     self scrollLeftOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   542
     ImageEditor openOnClass:self andSelector:#scrollLeftOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   543
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   544
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   545
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   546
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   547
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   548
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   549
	constantNamed:'VistaToolbarIconLibrary class scrollLeftOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   550
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   551
@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDB@ HB@ HB@ HB@ HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LCAP E@0LC@0LC@0LC@0LEBAHH
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   552
B@LC@0LC@0LC@0LEB@4SB@ C@0LC@0LC@0LCB@(NE@ H@0LC@0LC@0LC@0$KC1THB@LC@0LC@0LC@0LHCA@VB@ C@0LC@0LC@0LCA0 QE0 H@0LC@0LC@0LC
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   553
@0LGBA HB@LC@0LC@0LC@0LC@0LGB@\C@0LC@0PDA@PDA@PDA@PDA@PDA@PEAPTEAPTEAPTEAPTEAPTEA XFA XFA XFA XFA XFA @a') ; colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   554
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   555
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   556
scrollRightActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   557
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   558
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   559
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   560
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   561
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   562
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
     self scrollRightActiveIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   564
     ImageEditor openOnClass:self andSelector:#scrollRightActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   565
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   566
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   567
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
        constantNamed:'VistaToolbarIconLibrary class scrollRightActiveIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   572
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   573
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   574
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   576
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   577
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   578
@@@@@@@@@@@@@@@@@@@@@@H/R$)JR$)JR$)JR$)JK0H/K$PID1LSD1LSD1L&ST@9R$QCIQDQDQDQDQDGDB-LR$(IIRP,H0\HA2L#H2HDKT)JD1D,C1%BE$IK
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
FQ$5C#]JR!!LQH1$YP#IIP$,YMP87R$(SDRLYFTH2AQ-BR3TNM4)JGC8L@PDXJC KOA ^@A]JR!!0>C@DAFB@''O1 3G @WR$(\O 0A@Q 6CQ 3@Q8@E4)JD#PL
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
@PDXN!! 3@PD^QQ]JR$IGQ!!8^OR(=G!!8^LP(WR$(ZES,@@@@@@@@@QP(TE4)NJRDCE1\WE1\WE1\WE1<FRA5JR$)JR$)JR$)JR$)A@ @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   581
                colorMapFromArray:#[ 102 186 221 111 202 240 150 173 191 161 203 221 171 219 239 39 98 129 43 93 131 201 235 249 211 238 251 234 247 253 100 182 216 124 172 197 131 209 242 157 193 212 170 217 236 176 225 247 190 231 248 202 236 249 210 238 250 231 246 252 98 177 211 109 198 235 20 50 65 158 199 217 163 221 245 175 225 247 188 230 248 48 121 159 211 239 250 72 120 156 108 196 233 139 179 201 25 62 82 167 211 230 175 225 246 186 229 248 198 234 249 210 239 251 227 244 252 117 167 194 17 42 55 149 192 216 161 217 241 174 223 244 187 230 248 203 226 236 210 227 237 68 119 157 248 248 248 105 192 228 15 38 50 141 213 243 158 219 245 173 222 243 42 105 139 201 224 234 50 125 165 63 114 152 80 144 178 104 190 226 129 175 200 139 208 238 159 220 245 176 205 220 189 217 232 43 94 132 204 236 250 221 243 251 238 249 253 102 185 220 111 201 239 138 212 243 164 186 202 35 88 116 24 89 138 192 231 249 206 231 241 218 241 251 77 125 161 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   582
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   585
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   586
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   589
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   590
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   592
scrollRightOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   596
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   597
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
     self scrollRightOffEntered1Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
     ImageEditor openOnClass:self andSelector:#scrollRightOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
        constantNamed:'VistaToolbarIconLibrary class scrollRightOffEntered1Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   607
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
@@@@@@@@@@@@@@@@@@@@@DP5I2\''I2\''I2\''I2\''MTP[U3MMST5MST5MST5MY1T(F!!%MSU)ZV%)ZV%(XB40?CP@YSQ %IT@LPBT%IS<>B @@L0,?B )@DD@2
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
B (>E$,@@CM&B#8>FDMYFC<>BRMX@@AMI#9%YRUCV4D%B#AJBP@@I@!!#UUT=JSQPM#4:NRD@@A\<N24-YFE]HFQVAQD.@@@1X1MFQ"INNBHTQ P+A @@BR8_
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
G!!9IS4%"G!!8+@4 @@C4,QQ4]NP\9GQ4]W3]T@@@/J%8OC0<OC0<OTPH\D @ADQ= T5MST5MST5MST5IBQ09\WE1\WE1\WE1\WE1BQ@@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
                colorMapFromArray:#[ 158 158 158 177 177 177 190 190 194 199 199 202 206 207 210 211 211 214 217 217 218 219 219 221 226 226 228 234 234 235 238 238 239 242 242 243 246 246 247 157 157 157 175 175 175 191 192 195 73 73 73 207 207 209 212 212 213 214 214 217 218 219 221 228 228 228 233 233 234 236 236 238 243 243 243 247 247 247 156 156 156 171 171 171 189 189 192 198 199 202 204 204 208 210 210 213 216 216 216 220 220 221 225 226 228 231 231 233 238 238 238 241 241 242 239 239 240 151 151 151 169 169 169 63 63 63 195 195 199 203 203 206 209 209 212 213 213 216 218 218 220 225 225 226 232 232 233 235 236 236 242 242 242 246 246 246 146 146 146 167 167 167 190 190 190 194 194 198 205 205 205 210 211 213 214 215 217 217 217 220 224 224 226 231 231 232 236 236 237 240 240 241 244 244 245 142 142 142 165 165 165 60 60 60 198 198 198 200 200 204 208 209 212 212 212 212 215 215 217 222 222 225 229 229 231 236 236 236 240 240 240 245 245 245 128 128 128 162 162 162 187 187 187 191 191 195 201 201 202 206 206 209 213 214 215 217 217 219 222 222 224 231 231 231 235 235 236 112 112 112 243 243 244 121 121 121 160 160 160 184 184 184 192 193 196 197 197 201 208 208 210 86 86 86 215 215 218 221 221 223 228 228 230 233 233 235 240 241 241 244 244 244 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   618
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   619
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   628
scrollRightOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   629
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   630
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   633
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   634
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   635
     self scrollRightOffEntered2Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   636
     ImageEditor openOnClass:self andSelector:#scrollRightOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   637
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   638
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   639
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   640
        constantNamed:'VistaToolbarIconLibrary class scrollRightOffEntered2Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   641
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   642
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   643
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   644
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   645
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   646
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   647
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   648
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   649
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
@@@@@@@@@@@@@@@@@@@@@A4HQ4]GQ4]GQ4]GQ4]GBA4HA"P[F1,[F1,[F1,[DS4RQ2PPMRH"H"H"H"H"Q$TGAD\[MR,NC!!$,FP8NC#LWF QGF2HNHRDOBP<E
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
HRDMJS8DQ1,"C"D!!C2TBC0T!!CR$>AD\[H 8!!HP<%G2(OAP4)O QGO3,:G!!82D1 .GCIBI"@DQ3<;N!!8^L# 7ESH(P"X AD\?N3(^G#IDECH(G$H&H@QGO0L:
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
G!!82M#H(G!!9BK2@DQ3<1I4IBP01CP$IBB$D AD\-NPD&I"X&I"X&K4D@H@Q@E#P<HB@ HB@ HB@ H@,#LD$DA@PDA@PDA@PDA@P#GP@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
                colorMapFromArray:#[ 148 192 216 159 206 232 32 106 145 197 231 249 52 110 153 223 242 252 229 237 245 244 245 246 96 148 187 18 60 82 160 208 233 187 202 213 197 228 245 211 235 247 220 240 251 229 244 252 238 248 253 253 253 255 91 143 182 15 50 69 155 205 232 175 215 237 200 217 230 209 231 244 46 151 207 227 243 252 240 240 242 253 254 255 126 191 225 163 187 206 169 219 246 36 118 162 219 221 223 214 238 251 227 244 252 71 123 162 254 255 255 14 46 63 156 202 227 168 218 245 187 227 248 207 229 242 44 146 200 225 242 252 233 245 252 250 252 254 121 189 224 155 201 226 176 198 215 185 226 248 200 232 249 213 237 250 231 234 236 232 246 253 76 166 214 114 185 223 23 75 103 166 215 241 181 224 247 198 231 249 223 225 227 227 235 241 238 239 240 251 253 254 103 153 190 152 198 222 164 213 239 183 222 242 39 127 175 212 236 248 222 241 252 60 127 177 248 248 248 98 148 185 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   656
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
                                        fromPackedString:'@@C???????????????????????????????????????<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   664
scrollRightOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   668
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   669
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   670
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   671
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   672
     self scrollRightOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   673
     ImageEditor openOnClass:self andSelector:#scrollRightOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   674
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   675
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   676
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   677
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   678
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
	constantNamed:'VistaToolbarIconLibrary class scrollRightOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   682
@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDB@ HB@ HB@ HB@ HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0LCAP E@0LC@0LC@0LC@0LC@0 RB@TC
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   683
@0LC@0LC@0LC@0LHD04HAPLC@0LC@0LC@0LCBAPNB  G@0LC@0LC@0LC@0 UC0,IB@LC@0LC@0LC@0LHE!!@LB@\C@0LC@0LC@0LCBA\QB@\C@0LC@0LC@0LC
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
@0 XB@\C@0LC@0LC@0LC@0LGB@\C@0LC@0LC@0PDA@PDA@PDA@PDA@PDA@PEAPTEAPTEAPTEAPTEAPTEA XFA XFA XFA XFA XFA @a') ; colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
scrollUpActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   689
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
     self scrollUpActiveIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
     ImageEditor openOnClass:self andSelector:#scrollUpActiveIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
    ^ Icon constantNamed:'VistaToolbarIconLibrary class scrollUpActiveIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   700
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   701
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   704
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   706
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
@C(MEAPTEAPTEAPTEAPLA @MO"H,M#X6@PDARQX=LB,@EBH!!O4!!HRDUEQT<%C3DT@AP,O0)QQ4\EAPTEAB4&E@@TM$!!QG" (SD1LSA%AS!!P@ECYHJB (JA,[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
SA%APT8T@AP6RB (G1<ZI1,YPTENE@@TM$ (G1YBNS0''K4EAS!!P@ECYHG1X8A0,X@#,$ID8T@AP6RAXHJ L.P4QMGA1NE@@TM$!!GG1XVI2\''I3,$S!!P@ECX4
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   710
Q2 (JD1LSD0YM48T@AQJL3IPTE@YFQ$YH4-NE@@TMTXSGQ4]PTEAM4,NS!!P@P@$ @ATUET9NS$9NS!!@)@ADWEAPTEAPTEAPTEAP)D @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
                colorMapFromArray:#[ 203 226 236 211 239 250 69 137 173 105 160 189 111 201 239 131 209 242 152 178 198 30 75 99 35 88 116 189 217 232 198 234 249 50 125 165 64 116 156 79 126 162 98 177 211 109 198 235 139 179 201 153 177 195 162 186 204 171 219 239 24 89 138 201 224 234 204 236 250 64 114 153 80 144 178 108 196 233 18 46 61 141 213 243 157 211 233 170 217 236 176 225 247 192 231 249 206 231 241 221 243 251 238 249 253 105 192 228 134 201 228 138 212 243 161 203 221 163 221 245 175 225 247 43 94 132 49 123 162 60 112 152 234 247 253 104 190 226 130 176 200 139 208 238 157 201 223 167 211 230 175 225 246 190 231 248 201 235 249 218 241 251 231 246 252 102 185 220 14 34 45 22 55 72 163 183 199 161 217 241 37 94 124 189 230 248 204 222 233 211 239 251 69 120 158 102 186 221 13 31 41 145 185 207 157 193 212 159 220 245 174 223 244 186 229 248 202 236 249 211 238 250 227 244 252 100 182 216 111 202 240 143 184 206 158 199 217 158 219 245 173 222 243 187 230 248 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   721
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
scrollUpOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   723
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   724
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   725
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   726
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   727
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   728
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
     self scrollUpOffEntered1Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
     ImageEditor openOnClass:self andSelector:#scrollUpOffEntered1Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   733
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
        constantNamed:'VistaToolbarIconLibrary class scrollUpOffEntered1Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
@B@SB (JB (KB ,KB0,RH0@SLTIBP$EAN#$8MSL.IAP@BTIBPS8=OCD.KR,%F2XN@@%APS<<N3$-J"$&G1($C @IPS<=N3$6J"\%H!!8YI@8@BTD?OS,9M"<1
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
KBH^FRPN@@%AO349N3PBLB$^G!!$$C @IPS<=OC4@@0X.I"XYI@8@BTD?OS<AA@ OCB0,FRPN@@%AO34EA1TXG"H]JQ$$C @IPS<=O#<=MCD0K"0YI@8@BTD?
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
OS,9M"(''IRH^FRPN@@%AO309NCP)I"P!!GA $C @IO309MSP2I"P!!G!!,WI@8@DSD=N3$9NB4+J"$(I!!<P@A8QC@4MCP4MCP4MCP4PE @a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
                colorMapFromArray:#[ 52 52 50 56 56 60 68 70 70 80 78 80 100 100 100 112 112 110 120 118 120 144 144 140 148 146 150 152 152 150 152 154 150 156 154 150 156 158 160 160 158 160 160 160 160 164 162 160 164 166 170 168 168 170 172 170 170 172 172 170 172 174 170 176 178 180 188 188 190 188 190 190 192 192 190 192 192 200 192 194 200 196 196 200 196 198 200 200 198 200 200 200 200 200 202 200 204 204 200 204 204 210 204 206 210 208 206 210 208 208 210 208 210 210 212 212 210 212 214 220 216 214 220 216 216 220 216 218 220 220 218 220 220 220 220 220 222 220 224 224 230 224 226 230 228 226 230 228 228 230 228 230 230 232 230 230 232 232 230 232 234 230 232 234 240 236 234 230 236 234 240 236 236 240 236 238 240 240 238 240 240 240 240 240 242 240 244 242 240 244 244 240 244 244 250 244 246 250 248 246 250 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   750
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   755
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   756
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   757
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
scrollUpOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   760
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   761
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   762
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   763
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   764
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
     self scrollUpOffEntered2Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   766
     ImageEditor openOnClass:self andSelector:#scrollUpOffEntered2Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   768
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   769
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   770
        constantNamed:'VistaToolbarIconLibrary class scrollUpOffEntered2Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   771
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
            (Depth8Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   773
                width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
                height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   776
                bitsPerSample:(#[ 8 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   778
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
                            fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
@BPRBP$IBP$IBP$IBP$OHP@RN41KR4-KRT%IRT%HM@4@BT1EP#<?O28.K"4(HDDI@@%KP#48NC &I"X&H!!,:BP@IR3<8M#X6H2L#H18ZM0$@BT,?NCX6M"(/
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
J"L^F#\I@@%KO3 6OB<BK2(^F!!(7BP@IR3<8OD@@@0X/I1(ZM0$@BT,?ND@AA@ LB"0%F#\I@@%KO3 EA1DSEQ$TJ1(7BP@IR3<8ODA@K2</K20ZM0$@BT,?
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
NCX6M"L#H2L^FC\I@@%KNST2L#H^G!!8^GA\7BP@IR#L1LC@0F!!(ZFA\VM0$@DC9GQ$QDQC\7M3\7M2$K@A<NBP$IBP$IBP$IBP$KGP@a');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
                colorMapFromArray:#[ 12 38 52 13 41 57 17 56 76 20 66 91 28 91 124 32 106 145 34 113 155 45 148 203 46 151 207 60 127 177 66 161 212 71 123 162 76 166 214 89 143 184 92 144 183 93 147 188 97 149 188 103 179 220 105 154 191 128 192 226 141 198 229 143 199 229 148 192 216 152 198 222 155 201 226 155 205 232 156 202 227 159 206 232 160 208 233 162 186 204 164 213 239 166 191 209 166 215 241 167 194 214 168 218 245 169 219 246 174 195 211 177 213 233 181 224 247 183 222 242 185 226 248 187 202 213 187 227 248 192 221 237 197 228 245 197 231 249 198 231 249 200 232 249 207 229 242 209 231 244 211 235 247 212 236 248 213 226 235 213 237 250 214 238 251 219 221 223 220 240 251 222 241 252 223 225 227 223 234 242 223 242 252 226 242 252 227 235 241 227 244 252 229 244 252 231 234 236 233 246 253 234 234 234 238 239 240 238 248 253 240 240 242 244 245 246 250 252 254 251 253 254 253 253 255 253 254 255 254 255 255 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   784
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   785
                            width:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   786
                            height:16;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   787
                            bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   788
                                        fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
scrollUpOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   796
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   798
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   799
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   800
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
     self scrollUpOffIcon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
     ImageEditor openOnClass:self andSelector:#scrollUpOffIcon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
     Icon flushCachedIcons
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
    ^Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
	constantNamed:'VistaToolbarIconLibrary class scrollUpOffIcon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   811
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LCA0 G
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   813
@0LCA@TF@@DB@0LCAP IB@\C@0PEA @A@ LCAP JB00HA0LDAPX@@PHCAP MC <PDP GA@TF@@DB@0 RD1PUE!!\XB@PEA @A@ LEB@ HB@ HB@\DAPX@@PHC
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @a') ; colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; yourself]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
! !
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
!MacOSXToolbarIconLibrary class methodsFor:'image specs-09x09'!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   819
closeIndicatorInTree9x9Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   820
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   823
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
     self closeIndicatorInTree9x9Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
     ImageEditor openOnClass:self andSelector:#closeIndicatorInTree9x9Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   828
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   831
        constantNamed:'VistaToolbarIconLibrary class closeIndicatorInTree9x9Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   832
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   833
            (Depth4Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   834
                width:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   835
                height:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   836
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   837
                bitsPerSample:(#[ 4 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
                            fromPackedString:'@AH@@C\@Q@@@M0AEP@@7@DXG@C\@Q&BEM0AFA0@7@DU@@C\@Q@@@M0@R@@@7');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
                colorMapFromArray:#[ 232 232 232 200 202 200 242 242 242 0 0 0 168 168 168 232 232 232 255 255 255 152 152 152 132 132 132 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   843
                            width:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   844
                            height:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
                            bits:(ByteArray fromPackedString:'LG<8_31?O''<?_39?OG<8_3A?');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   847
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   848
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   850
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   851
openIndicatorInTree9x9Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   852
    <resource: #image>
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   853
    "This resource specification was automatically generated
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   854
     by the ImageEditor of ST/X."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   855
    "Do not manually edit this!! If it is corrupted,
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   856
     the ImageEditor may not be able to read the specification."
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   857
    "
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   858
     self openIndicatorInTree9x9Icon inspect
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   859
     ImageEditor openOnClass:self andSelector:#openIndicatorInTree9x9Icon
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   860
     Icon flushCachedIcons"
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   861
    
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
    ^ Icon 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   863
        constantNamed:'VistaToolbarIconLibrary class openIndicatorInTree9x9Icon'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
        ifAbsentPut:[
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   865
            (Depth4Image new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   866
                width:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   867
                height:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   868
                photometric:(#palette);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   869
                bitsPerSample:(#[ 4 ]);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   870
                samplesPerPixel:(1);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   871
                bits:(ByteArray 
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   872
                            fromPackedString:'DQDQDQDQDQHADADQH3DPDQH1LQDQH1D1F!!H1DSDPDCL3@Q@QDQDQDADQDQDS');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   873
                colorMapFromArray:#[ 136 136 136 89 89 89 188 188 188 38 38 38 ];
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   874
                mask:((ImageMask new)
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   875
                            width:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
                            height:9;
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   877
                            bits:(ByteArray fromPackedString:'@G<F_09?G''<>_79?_''<@_0A?');
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   878
                            yourself);
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   879
                yourself
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   880
        ]
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   881
! !
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   882
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   883
!MacOSXToolbarIconLibrary class methodsFor:'documentation'!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   884
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   885
version
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   886
    ^ '$Header: /cvs/stx/stx/libwidg/MacOSXToolbarIconLibrary.st,v 1.1 2014-11-22 22:36:48 cg Exp $'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   887
!
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   888
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   889
version_CVS
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   890
    ^ '$Header: /cvs/stx/stx/libwidg/MacOSXToolbarIconLibrary.st,v 1.1 2014-11-22 22:36:48 cg Exp $'
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   891
! !
7323f63aeef7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   892