VistaToolbarIconLibrary.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 26 Sep 2013 19:33:14 +0200
changeset 4794 4c9e85f03a7d
parent 4549 082baffd9661
child 5036 595a512d636c
permissions -rw-r--r--
Completion support refactored: - created an abstract superclass to ease customization of completion support. - stx_libwidg class>>classNamesAndAttributes fixed so classes are listed in load order and package checker does not report any issues.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2008 by eXept Software AG
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
     3
	      All Rights Reserved
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    12
"{ Package: 'stx:libwidg' }"
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
XPToolbarIconLibrary subclass:#VistaToolbarIconLibrary
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Interface-Smalltalk'
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!VistaToolbarIconLibrary class methodsFor:'documentation'!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2008 by eXept Software AG
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    26
	      All Rights Reserved
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
4549
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    39
    ToolbarIconLibrary := VistaToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    40
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    41
    Notice and Warning:
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    42
        only redefine existing icons here; never add ionly to here.
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    43
        For every icon-method here, there MUST be a corresponding (albeit
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
    44
        possibly ugly) icon-method in GenericToolBarIcon.
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    48
!VistaToolbarIconLibrary class methodsFor:'image specs'!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    49
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    50
checkToggleOffDisabledIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    51
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    52
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    53
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    54
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    55
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    56
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    57
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    58
     self checkToggleOffDisabledIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    59
     ImageEditor openOnClass:self andSelector:#checkToggleOffDisabledIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    60
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    61
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    62
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    63
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    64
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    65
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    66
	constantNamed:'VistaToolbarIconLibrary class checkToggleOffDisabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    67
	ifAbsentPut:[(Depth4Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'"H"H"H"H H&Y&YT,PXBI&Y%R1AFH"Y&UKDF; H&YH$F7L8BET$F7L@BA#DF7@@** HP[\J*&*(BK\0**)**@!!3B*)&Y& XLJ**Y&Y(B@**)&Y&ZD"H"H"H"H
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    68
 @@a') ; colorMapFromArray:#[249 249 249 245 245 245 242 242 242 248 248 248 244 244 244 241 241 241 251 251 251 247 247 247 177 177 177 240 240 240 250 250 250 246 246 246 243 243 243]; yourself]
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    69
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    70
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    71
checkToggleOffEnteredIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    72
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    73
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    74
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    75
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    76
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    77
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    78
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    79
     self checkToggleOffEnteredIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    80
     ImageEditor openOnClass:self andSelector:#checkToggleOffEnteredIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    81
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    82
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    83
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    84
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    85
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    86
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    87
	constantNamed:'VistaToolbarIconLibrary class checkToggleOffEnteredIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
    88
	ifAbsentPut:[(Depth24Image new) width: 13; height: 13; photometric:(#rgb); bitsPerSample:(#(8 8 8)); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    89
UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#7/'':7/'':7/'':7/'':7/'':7/'':7/'':7/'':7/'':7/'':7/'':UXZ#UXZ#7/'':^\[9^\[9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    90
^\[9^\[9^\[9^\[9^\_9_L''9 L/97/'':UXZ#UXZ#7/'':^\[9,]?=,]?=,]?=,]?=-NG=->O=.>W= <;97/'':UXZ#UXZ#7/'':^\[9,]?=,]?=,-?=-^K=.^S=
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    91
/^[=0N#=!!\?97/'':UXZ#UXZ#7/'':^\[9,.C=-NG=->K=.>W=/>_=0.''=1N+=$MS97/'':UXZ#UXZ#7/'':^<#9->O=.>W=/._=1N+=3^7=4N;=4.?=(=/:7/'':
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    92
UXZ#UXZ#7/'':_,+9/^[=0^#=2N/=5_C>7_O>7/O>7_O>-NK;7/'':UXZ#UXZ#7/'': L390^#=2N/=4^?=7_O>8?W>9OW>8?W>/.[<7/'':UXZ#UXZ#7/'': <;9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    93
1>/=4^?=6_G>8/W>9?[>:O_>9?_>2N+<7/'':UXZ#UXZ#7/'':#MK9(]/:,^G;/^W<2^+<4.7=5N;=5N;=3>3=7/'':UXZ#UXZ#7/'':7/'':7/'':7/'':7/'':7/'':
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    94
7/'':7/'':7/'':7/'':7/'':UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#') ; yourself]
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    95
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    96
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    97
checkToggleOffIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    98
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
    99
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   100
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   101
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   102
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   103
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   104
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   105
     self checkToggleOffIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   106
     ImageEditor openOnClass:self andSelector:#checkToggleOffIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   107
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   108
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   109
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   110
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   111
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   112
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   113
	constantNamed:'VistaToolbarIconLibrary class checkToggleOffIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   114
	ifAbsentPut:[(Depth24Image new) width: 13; height: 13; photometric:(#rgb); bitsPerSample:(#(8 8 8)); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   115
#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O=OS4=OS4=OS4=OS4=OS4=OS4=OS4=OS4=OS4=OS4=OS4#(>O#(>O=OS4++N9++N9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   116
++N9++N9++N9++N9+;R:-K&=.;;A=OS4#(>O#(>O=OS4++N92<?U2<?U2<?U2<?U4MOX5]#\6=7_0\OE=OS4#(>O#(>O=OS4++N92<?U2<?U3]GV4-WZ6M/^
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   117
7]?!!8.O$1,_H=OS4#(>O#(>O=OS4++N93]GW4MSY5M_[6=7_8^K#9^[&:N#(3L7M=OS4#(>O#(>O=OS4,+^<5]#\6-3_8NG#:N#(;N3,;^7-;^7-5MWV=OS4
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   118
#(>O#(>O=OS4.K.?7]?!!9NW%:.+*;>?/</K2</K2</K27M7^=OS4#(>O#(>O=OS4/K?B8>S%:^'');^7-</K2=OS4=_W5=OS48^K"=OS4#(>O#(>O=OS40,SF
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   119
:^'');^7-<OC0=OS4=/[6=/[6=/[69.[&=OS4#(>O#(>O=OS42,/L5MSU6=/\8NG!!9._'':./+:>3,:>/,:^''*=OS4#(>O#(>O=OS4=OS4=OS4=OS4=OS4=OS4
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   120
=OS4=OS4=OS4=OS4=OS4#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O') ; yourself]
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   121
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   122
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   123
checkToggleOnDisabledIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   124
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   125
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   126
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   127
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   128
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   129
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   130
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   131
     self checkToggleOnDisabledIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   132
     ImageEditor openOnClass:self andSelector:#checkToggleOnDisabledIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   133
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   134
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   135
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   136
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   137
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   138
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   139
	constantNamed:'VistaToolbarIconLibrary class checkToggleOnDisabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   140
	ifAbsentPut:[(Depth24Image new) width: 13; height: 13; photometric:(#rgb); bitsPerSample:(#(8 8 8)); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   141
#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O>_''9>_''9>_''9>_''9>_''9>_''9>_''9>?/;?O3<>/+:>_''9#(>O#(>O>_''96M#X6M#X
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   142
6M#X6M#X6M#X9^W%4-KR0,KB;.;.>/+:#(>O#(>O>_''96M#X9.[&9.[&9.[&9>_''=/[6-KR4+J2,7-;^>/+:#(>O#(>O>_''96M#X9.[&9.[&9>_''<OC06=/[
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   143
+J2,.+*:<?O3>_''9#(>O#(>O>_''96M#X:>/+<OC0:>/+>O#8-;^7+Z6-8NC ;^7->_''9#(>O#(>O>_''98>O#9.[&5-[V=/[67=?_+*:..+*:>?/;:.+*>_''9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   144
#(>O#(>O>_''9;>?//+:>+Z6-:^'').;.;+:>/7-;^>/+:;^7->_''9#(>O#(>O>_''99.[&;>?/+Z6-+*:.+:>/.K"8>?/;>_''9<OC0>_''9#(>O#(>O>_''98>O#
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   145
=_W52</K+*:.+:>/6=/[?O3<>/+:</K2>_''9#(>O#(>O>_''99NS$;N3,<OC02</K3\7M>_''9=_W5=_W5=OS4>_''9#(>O#(>O>_''9>_''9>_''9>/+:?O3<>?/;
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   146
>/+:>_''9>_''9>_''9>_''9#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O') ; yourself]
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   147
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   148
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   149
checkToggleOnEnteredIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   150
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   151
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   152
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   153
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   154
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   155
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   156
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   157
     self checkToggleOnEnteredIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   158
     ImageEditor openOnClass:self andSelector:#checkToggleOnEnteredIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   159
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   160
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   161
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   162
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   163
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   164
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   165
	constantNamed:'VistaToolbarIconLibrary class checkToggleOnEnteredIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   166
	ifAbsentPut:[(Depth24Image new) width: 13; height: 13; photometric:(#rgb); bitsPerSample:(#(8 8 8)); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   167
UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#7/'':7/'':7/'':7/'':7/'':7/'':7/'':;O3<<?7=9/+;7/'':UXZ#UXZ#7/'':^\[9^\[9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   168
^\[9^\[9^\[9.NG<%ZGCWWB#:.738_'':UXZ#UXZ#7/'':^\[9,]?=,]?=,]?=,>C=>_+<H#2BABI1-[;U:O/;UXZ#UXZ#7/'':^\[9,]?=,]?=,-?=5.?>''*''H
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   169
ABI1LD&J:__>7/'':UXZ#UXZ#7/'':^\[91N_=5.?>..O=?O3=I4FEABI1*[SO/.[;7/'':UXZ#UXZ#7/'':*-/;1L/^#I*>9OW>)+GMABI1J$RG?O3=)M/:7/'':
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   170
UXZ#UXZ#7/'':8_O>O5ZRABI11L/^KTZHABI1''*''H;O#>-NK;7/'':UXZ#UXZ#7/'':+];;7NC+ABI1ABI1ABI1H#2B>_+<9OW>/.[<7/'':UXZ#UXZ#7/'':#]K9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   171
:.73X''V&ABI1ABI1$)?A<?/>9?_>2N+<7/'':UXZ#UXZ#7/'':#MK9-^O;8^W.ZG**Z76+=/_:5.?=5N;=3>3=7/'':UXZ#UXZ#7/'':7/'':7/'':9O+;</7=<_7=
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   172
9O+;7/'':7/'':7/'':7/'':UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#UXZ#') ; yourself]
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   173
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   174
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   175
checkToggleOnIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   176
    "This resource specification was automatically generated
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   177
     by the ImageEditor of ST/X."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   178
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   179
    "Do not manually edit this!! If it is corrupted,
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   180
     the ImageEditor may not be able to read the specification."
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   181
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   182
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   183
     self checkToggleOnIcon inspect
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   184
     ImageEditor openOnClass:self andSelector:#checkToggleOnIcon
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   185
     Icon flushCachedIcons
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   186
    "
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   187
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   188
    <resource: #image>
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   189
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   190
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   191
	constantNamed:'VistaToolbarIconLibrary class checkToggleOnIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   192
	ifAbsentPut:[(Depth24Image new) width: 13; height: 13; photometric:(#rgb); bitsPerSample:(#(8 8 8)); samplesPerPixel:(3); bits:(ByteArray fromPackedString:'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   193
#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O=OS4=OS4=OS4=OS4=OS4=OS4=OS4>O#8>_''9=/[6=OS4#(>O#(>O=OS4++N9++N9
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   194
++N9++N9++N92\3P''Z_@]8Z+7M?$=_W5#(>O#(>O=OS4++N92<?U2<?U2<?U3MCV;^;1U6*]QE*R.[?P=/[6#(>O#(>O=OS4++N92<?U2<?U3]GV8NK&+;#O
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   195
QU*RYW^%9>_(=OS4#(>O#(>O=OS4++N95]'']7>K%5]#\</O4W''F!!Q52T/LOV6=3\=OS4#(>O#(>O=OS41\''M2\?](:;H;^;..,GURU:VYGZ%>O#85]WV=OS4
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   196
#(>O#(>O=OS47.C!![''>*Q52T3=S"Y7"''R6BW-;?U=/[67M7^=OS4#(>O#(>O=OS43\?Q7.G)RE6URU>VR6BWXWN$>O'':=OS48^K"=OS4#(>O#(>O=OS41,#J
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   197
:.30"9&;R%>WSFFX,K''Q>_''9=/[69.[&=OS4#(>O#(>O=OS42,/L6-+[7>K)#I&:$I6=</O6;N7-:>/,:^''*=OS4#(>O#(>O=OS4=OS4=OS4=_W5>_''9>O#8
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   198
=_W5=OS4=OS4=OS4=OS4#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O#(>O') ; yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   199
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   200
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   201
scrollDownActiveIcon
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   202
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   203
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   204
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   205
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   206
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   207
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   208
    "
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   209
     self scrollDownActiveIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   210
     ImageEditor openOnClass:self andSelector:#scrollDownActiveIcon
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   211
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   212
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   213
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   214
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   215
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   216
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   217
	constantNamed:'VistaToolbarIconLibrary class scrollDownActiveIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   218
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   219
@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"\''
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   220
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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   221
Q2 (JD1LSD0YM48T@AQJL3IPTE@YFQ$YH4-NE@@TMTXSGQ4]PTEAM4,NS!!P@CP$ @ATUET9NS$9NS!!@+@C(MEAPTEAPTEAPTEAPLA @a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   222
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   223
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   224
scrollDownOffEntered1Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   225
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   226
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   227
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   228
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   229
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   230
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   231
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   232
     self scrollDownOffEntered1Icon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   233
     ImageEditor openOnClass:self andSelector:#scrollDownOffEntered1Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   234
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   235
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   236
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   237
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   238
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   239
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   240
	constantNamed:'VistaToolbarIconLibrary class scrollDownOffEntered1Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   241
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   242
@A8QC@4MCP4MCP4MCP4PE @QLTIBP$EAN#$8MSL.IA@@BTIBPS8=OCD.KR,%F2XN@@%APS<<N3$-J"$&G1($C @IPS<=N3$6J"\%H!!8YI@8@BTD?OS8?OSP1
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   243
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?
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   244
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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   245
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   246
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   247
scrollDownOffEntered2Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   248
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   249
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   250
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   251
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   252
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   253
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   254
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   255
     self scrollDownOffEntered2Icon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   256
     ImageEditor openOnClass:self andSelector:#scrollDownOffEntered2Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   257
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   258
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   259
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   260
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   261
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   262
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   263
	constantNamed:'VistaToolbarIconLibrary class scrollDownOffEntered2Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   264
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   265
@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</
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   266
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,?
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   267
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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   268
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   269
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   270
scrollDownOffIcon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   271
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   272
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   273
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   274
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   275
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   276
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   277
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   278
     self scrollDownOffIcon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   279
     ImageEditor openOnClass:self andSelector:#scrollDownOffIcon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   280
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   281
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   282
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   283
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   284
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   285
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   286
	constantNamed:'VistaToolbarIconLibrary class scrollDownOffIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   287
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   288
@@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
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   289
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
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   290
@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]
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   291
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   292
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   293
scrollLeftActiveIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   294
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   295
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   296
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   297
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   298
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   299
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   300
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   301
     self scrollLeftActiveIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   302
     ImageEditor openOnClass:self andSelector:#scrollLeftActiveIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   303
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   304
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   305
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   306
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   307
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   308
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   309
	constantNamed:'VistaToolbarIconLibrary class scrollLeftActiveIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   310
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   311
@@@@@@@@@@@@@@@@@@@@@BHIK2</K2</K2</K2</BQ!!QI2$3Q4]GQ4]GQ4\TQ"T2K2$<GQHRD!!HRD!!HGS!!AOK2<3GQ0[DQDGT@\QDT4.I"</Q1H[NTL:N2P;
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   312
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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   313
@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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   314
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   315
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   316
scrollLeftOffEntered1Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   317
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   318
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   319
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   320
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   321
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   322
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   323
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   324
     self scrollLeftOffEntered1Icon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   325
     ImageEditor openOnClass:self andSelector:#scrollLeftOffEntered1Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   326
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   327
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   328
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   329
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   330
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   331
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   332
	constantNamed:'VistaToolbarIconLibrary class scrollLeftOffEntered1Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   333
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   334
@@@@@@@@@@@@@@@@@@@@@@=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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   335
U5]$X3@''PCH1U1X$R08&R1XVBQT0I4@%OQX=VA-HJE <O@ ;RR]@H2EGH%@^FT<"NS% T"@''PC0.D3(/S@@*K0TEG2,SI4AVQ5MEXP\ZQ@]EQQE^Q"]@B@X8
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   336
M3\-K$L.M3]^GV@''PFIE@14]GQ=TG14]M HRI4@:WQ1BP$IBP$IBMR%\KB]ATQ=_J2,+J2,+J2,+J1@@ACPMCP4MCP4MCP4MCP5[@P@a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   337
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   338
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   339
scrollLeftOffEntered2Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   340
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   341
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   342
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   343
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   344
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   345
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   346
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   347
     self scrollLeftOffEntered2Icon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   348
     ImageEditor openOnClass:self andSelector:#scrollLeftOffEntered2Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   349
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   350
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   351
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   352
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   353
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   354
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   355
	constantNamed:'VistaToolbarIconLibrary class scrollLeftOffEntered2Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   356
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   357
@@@@@@@@@@@@@@@@@@@@@CH0F!!(ZF!!(ZF!!(ZF!!(ZLB &H3$/K2</K2</K2</IQ@@F#$.BDEAPTEAPTEAFQ $HQ(/BD,,KB07SC\,K@X5NBDZK4D,R$("KQX-
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   358
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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   359
JR$4C#DNJR$C@#<!!F $>L0LC@04*CPLCG ,?HQ)CQ1UFQ$YFQ$YF@ ,''O2D\AP\OO3<?O3<?O3<?O1=BOTP!!HRD!!HRD!!HRD!!HREBN @a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   360
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   361
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   362
scrollLeftOffIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   363
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   364
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   365
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   366
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   367
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   368
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   369
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   370
     self scrollLeftOffIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   371
     ImageEditor openOnClass:self andSelector:#scrollLeftOffIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   372
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   373
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   374
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   375
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   376
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   377
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   378
	constantNamed:'VistaToolbarIconLibrary class scrollLeftOffIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   379
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4066
a91c86282028 changed: #scrollLeftOffIcon
Claus Gittinger <cg@exept.de>
parents: 4065
diff changeset
   380
@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDB@ HB@ HB@ HB@ HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LCAP E@0LC@0LC@0LC@0LEBAHH
a91c86282028 changed: #scrollLeftOffIcon
Claus Gittinger <cg@exept.de>
parents: 4065
diff changeset
   381
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
a91c86282028 changed: #scrollLeftOffIcon
Claus Gittinger <cg@exept.de>
parents: 4065
diff changeset
   382
@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]
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   383
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   384
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   385
scrollRightActiveIcon
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   386
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   387
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   388
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   389
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   390
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   391
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   392
    "
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   393
     self scrollRightActiveIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   394
     ImageEditor openOnClass:self andSelector:#scrollRightActiveIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   395
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   396
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   397
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   398
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   399
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   400
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   401
	constantNamed:'VistaToolbarIconLibrary class scrollRightActiveIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   402
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   403
@@@@@@@@@@@@@@@@@@@@@@H/R$)JR$)JR$)JR$)JK0H/K$PID1LSD1LSD1L&ST@9R$QCIQDQDQDQDQDGDB-LR$(IIRP,H0\HA2L#H2HDKT)JD1D,C1%BE$IK
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   404
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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   405
@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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   406
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   407
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   408
scrollRightOffEntered1Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   409
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   410
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   411
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   412
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   413
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   414
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   415
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   416
     self scrollRightOffEntered1Icon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   417
     ImageEditor openOnClass:self andSelector:#scrollRightOffEntered1Icon
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   418
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   419
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   420
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   421
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   422
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   423
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   424
	constantNamed:'VistaToolbarIconLibrary class scrollRightOffEntered1Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   425
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   426
@@@@@@@@@@@@@@@@@@@@@DP5I2\''I2\''I2\''I2\''MTP[U3MMST5MST5MST5MY1T(F!!%MSU)ZV%)ZV%(XB40?CP@YSQ %IT@LPBT%IS<>B @@L0,?B )@DD@2
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   427
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_
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   428
G!!9IS4%"G!!8+@4 @@C4,QQ4]NP\9GQ4]W3]T@@@/J%8OC0<OC0<OTPH\D @ADQ= T5MST5MST5MST5IBQ09\WE1\WE1\WE1\WE1BQ@@a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   429
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   430
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   431
scrollRightOffEntered2Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   432
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   433
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   434
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   435
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   436
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   437
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   438
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   439
     self scrollRightOffEntered2Icon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   440
     ImageEditor openOnClass:self andSelector:#scrollRightOffEntered2Icon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   441
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   442
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   443
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   444
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   445
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   446
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   447
	constantNamed:'VistaToolbarIconLibrary class scrollRightOffEntered2Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   448
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   449
@@@@@@@@@@@@@@@@@@@@@A4HQ4]GQ4]GQ4]GQ4]GBA4HA"P[F1,[F1,[F1,[DS4RQ2PPMRH"H"H"H"H"Q$TGAD\[MR,NC!!$,FP8NC#LWF QGF2HNHRDOBP<E
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   450
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:
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   451
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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C???????????????????????????????????????<b') ; yourself); yourself]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   452
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   453
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   454
scrollRightOffIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   455
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   456
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   457
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   458
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   459
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   460
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   461
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   462
     self scrollRightOffIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   463
     ImageEditor openOnClass:self andSelector:#scrollRightOffIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   464
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   465
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   466
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   467
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   468
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   469
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   470
	constantNamed:'VistaToolbarIconLibrary class scrollRightOffIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   471
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   472
@@@@@@@@@@@@@@@@@@@@@@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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   473
@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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   474
@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]
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   475
!
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   476
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   477
scrollUpActiveIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   478
    "This resource specification was automatically generated
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   479
     by the ImageEditor of ST/X."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   480
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   481
    "Do not manually edit this!! If it is corrupted,
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   482
     the ImageEditor may not be able to read the specification."
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   483
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   484
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   485
     self scrollUpActiveIcon inspect
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   486
     ImageEditor openOnClass:self andSelector:#scrollUpActiveIcon
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   487
     Icon flushCachedIcons
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   488
    "
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   489
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   490
    <resource: #image>
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   491
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   492
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   493
	constantNamed:'VistaToolbarIconLibrary class scrollUpActiveIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   494
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   495
@C(MEAPTEAPTEAPTEAPLA @MO"H,M#X6@PDARQX=LB,@EBH!!O4!!HRDUEQT<%C3DT@AP,O0)QQ4\EAPTEAB4&E@@TM$!!QG" (SD1LSA%AS!!P@ECYHJB (JA,[
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   496
SA%APT8T@AP6RB (G1<ZI1,YPTENE@@TM$ (G1YBNS0''K4EAS!!P@ECYHG1X8A0,X@#,$ID8T@AP6RAXHJ L.P4QMGA1NE@@TM$!!GG1XVI2\''I3,$S!!P@ECX4
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   497
Q2 (JD1LSD0YM48T@AQJL3IPTE@YFQ$YH4-NE@@TMTXSGQ4]PTEAM4,NS!!P@P@$ @ATUET9NS$9NS!!@)@ADWEAPTEAPTEAPTEAP)D @a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   498
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   499
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   500
scrollUpOffEntered1Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   501
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   502
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   503
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   504
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   505
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   506
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   507
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   508
     self scrollUpOffEntered1Icon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   509
     ImageEditor openOnClass:self andSelector:#scrollUpOffEntered1Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   510
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   511
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   512
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   513
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   514
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   515
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   516
	constantNamed:'VistaToolbarIconLibrary class scrollUpOffEntered1Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   517
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   518
@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
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   519
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?
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   520
OS,9M"(''IRH^FRPN@@%AO309NCP)I"P!!GA $C @IO309MSP2I"P!!G!!,WI@8@DSD=N3$9NB4+J"$(I!!<P@A8QC@4MCP4MCP4MCP4PE @a') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   521
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   522
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   523
scrollUpOffEntered2Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   524
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   525
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   526
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   527
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   528
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   529
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   530
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   531
     self scrollUpOffEntered2Icon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   532
     ImageEditor openOnClass:self andSelector:#scrollUpOffEntered2Icon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   533
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   534
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   535
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   536
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   537
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   538
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   539
	constantNamed:'VistaToolbarIconLibrary class scrollUpOffEntered2Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   540
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4065
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   541
@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"(/
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   542
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,?
13420626ab29 left and right buttons
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   543
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') ; 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]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?=??7??_?=??7??_?=??7??_?=??7??_?=??7??_?<b') ; yourself); yourself]
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   544
!
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   545
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   546
scrollUpOffIcon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   547
    "This resource specification was automatically generated
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   548
     by the ImageEditor of ST/X."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   549
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   550
    "Do not manually edit this!! If it is corrupted,
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   551
     the ImageEditor may not be able to read the specification."
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   552
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   553
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   554
     self scrollUpOffIcon inspect
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   555
     ImageEditor openOnClass:self andSelector:#scrollUpOffIcon
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   556
     Icon flushCachedIcons
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   557
    "
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   558
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   559
    <resource: #image>
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   560
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   561
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   562
	constantNamed:'VistaToolbarIconLibrary class scrollUpOffIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   563
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4035
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   564
@@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
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   565
@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
9a6150d1e636 added:8 methods
Claus Gittinger <cg@exept.de>
parents: 4034
diff changeset
   566
@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]
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   567
! !
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   568
4204
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   569
!VistaToolbarIconLibrary class methodsFor:'image specs-09x09'!
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   570
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   571
closeIndicatorInTree9x9Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   572
    "This resource specification was automatically generated
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   573
     by the ImageEditor of ST/X."
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   574
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   575
    "Do not manually edit this!! If it is corrupted,
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   576
     the ImageEditor may not be able to read the specification."
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   577
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   578
    "
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   579
     self closeIndicatorInTree9x9Icon inspect
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   580
     ImageEditor openOnClass:self andSelector:#closeIndicatorInTree9x9Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   581
     Icon flushCachedIcons
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   582
    "
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   583
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   584
    <resource: #image>
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   585
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   586
    ^Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   587
        constantNamed:'VistaToolbarIconLibrary class closeIndicatorInTree9x9Icon'
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   588
        ifAbsentPut:[(Depth4Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@AH@@C\@Q@@@M0AEP@@7@DXG@C\@Q&BEM0AFA0@7@DU@@C\@Q@@@M0@R@@@7') ; 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]; mask:((Depth1Image new) width: 9; height: 9; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'LG<8_31?O''<?_39?OG<8_3A?') ; yourself); yourself]
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   589
!
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   590
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   591
openIndicatorInTree9x9Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   592
    "This resource specification was automatically generated
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   593
     by the ImageEditor of ST/X."
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   594
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   595
    "Do not manually edit this!! If it is corrupted,
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   596
     the ImageEditor may not be able to read the specification."
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   597
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   598
    "
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   599
     self openIndicatorInTree9x9Icon inspect
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   600
     ImageEditor openOnClass:self andSelector:#openIndicatorInTree9x9Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   601
     Icon flushCachedIcons
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   602
    "
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   603
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   604
    <resource: #image>
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   605
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   606
    ^Icon
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   607
        constantNamed:'VistaToolbarIconLibrary class openIndicatorInTree9x9Icon'
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   608
        ifAbsentPut:[(Depth4Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'DQDQDQDQDQHADADQH3DPDQH1LQDQH1D1F!!H1DSDPDCL3@Q@QDQDQDADQDQDS') ; colorMapFromArray:#[136 136 136 89 89 89 188 188 188 38 38 38]; mask:((Depth1Image new) width: 9; height: 9; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G<F_09?G''<>_79?_''<@_0A?') ; yourself); yourself]
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   609
! !
5a23a1ab326b tree control icons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
   610
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
!VistaToolbarIconLibrary class methodsFor:'image-specs-12x12'!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
radioOff12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
    "This resource specification was automatically generated
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
     by the ImageEditor of ST/X."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
    "Do not manually edit this!! If it is corrupted,
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   618
     the ImageEditor may not be able to read the specification."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   619
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
     self radioOff12x12Icon inspect
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
     ImageEditor openOnClass:self andSelector:#radioOff12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
     Icon flushCachedIcons
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
    <resource: #image>
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   628
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   629
	constantNamed:'VistaToolbarIconLibrary class radioOff12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   630
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
OC0@G"PRD"P^@C0<OA(=B#@#H3@JOQ(<@@@]H HA@S<2GP@@G (OD2T6K ,-P0(^KB KE@L/A@8_I2 ,D"L\PAX LRDXCBLRD"L5PTH!!DDP;NA@IMA\7CRDP
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
DP YJQ\4I#8*EPUDDSL:H38&@@@]J3$1A \ZGP@@OA(@O#@QDR >@A(<OC0@I"P[F20&@C0<') ; colorMapFromArray:#[162 163 163 181 186 191 198 201 205 203 207 213 213 216 220 225 226 226 233 234 234 238 238 239 245 245 245 147 148 148 185 186 186 197 200 204 208 209 210 213 214 216 220 222 224 233 234 235 239 239 239 244 244 244 145 146 146 179 184 189 190 195 201 205 206 207 211 214 218 221 221 221 232 232 233 238 238 238 243 243 243 142 143 143 180 185 189 195 195 195 207 208 208 211 212 215 219 221 223 233 233 233 237 237 238 242 242 242 170 171 171 189 194 199 206 206 206 212 213 213 220 220 220 232 232 232 236 236 237 240 240 241 169 169 169 190 193 197 201 206 211 206 210 215 219 219 219 228 228 229 237 238 238 241 241 241 167 168 168 187 190 194 200 205 210 207 209 211 219 220 220 226 227 227 235 235 235 239 239 240 255 255 255 163 164 164 186 187 187 200 203 206 205 209 214 215 218 221 224 225 227 235 236 236 240 240 240]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   633
!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   634
3747
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   635
radioOffDisabled12x12Icon
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   636
    "This resource specification was automatically generated
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   637
     by the ImageEditor of ST/X."
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   638
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   639
    "Do not manually edit this!! If it is corrupted,
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   640
     the ImageEditor may not be able to read the specification."
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   641
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   642
    "
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   643
     self radioOffDisabled12x12Icon inspect
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   644
     ImageEditor openOnClass:self andSelector:#radioOffDisabled12x12Icon
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   645
     Icon flushCachedIcons
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   646
    "
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   647
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   648
    <resource: #image>
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   649
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   650
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   651
	constantNamed:'VistaToolbarIconLibrary class radioOffDisabled12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   652
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3749
e48df33c3ec8 better icons
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   653
OC1N!!B]_W2^DS#0<OD5(JD%GQ4$(ZD4<S$9TTT-)ZUUQUD9N!!B"EZ&5V\6QHBB"DR$%$SDU+[E9 A$%JW4]XS69^\QE4VT]_W4]" %\QQ$YFRTY&[1%Z\AEF
e48df33c3ec8 better icons
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   654
SV]QF!!%/]WY7^DQFST\HQ7Y5S$9T^711DW9MUD9NOD5N]$%MST%6S$4<OC1N]R]?_4)5S#0<') ; colorMapFromArray:#[162 163 163 181 186 191 198 201 205 203 207 213 213 216 220 225 226 226 233 234 234 238 238 239 245 245 245 147 148 148 185 186 186 197 200 204 208 209 210 213 214 216 220 222 224 233 234 235 239 239 239 244 244 244 145 146 146 179 184 189 190 195 201 205 206 207 211 214 218 221 221 221 232 232 233 238 238 238 243 243 243 142 143 143 180 185 189 195 195 195 207 208 208 211 212 215 219 221 223 233 233 233 237 237 238 242 242 242 170 171 171 189 194 199 206 206 206 212 213 213 220 220 220 232 232 232 236 236 237 240 240 241 169 169 169 190 193 197 201 206 211 206 210 215 219 219 219 228 228 229 237 238 238 241 241 241 167 168 168 187 190 194 200 205 210 207 209 211 219 220 220 226 227 227 235 235 235 239 239 240 255 255 255 163 164 164 186 187 187 200 203 206 205 209 214 215 218 221 224 225 227 235 236 236 240 240 240 229 231 234 247 247 247 248 248 248 222 224 226 237 237 237 212 212 212 226 228 230 222 225 228 249 249 249 208 209 209 230 232 234 245 245 245 246 246 246 212 213 213 246 246 246 225 225 225 227 229 230 227 230 232 239 240 241 217 220 222 231 232 232 231 232 233 246 246 246 247 247 247 237 237 237 237 238 239 200 200 200 233 233 235 233 234 234 221 222 224 247 247 247 226 227 229 249 249 249 201 201 201 250 250 250 209 209 209 218 220 223 217 219 222 230 232 235 234 235 237 222 224 227 233 234 236 211 211 211 234 234 235 241 241 242 220 220 220 228 230 233 243 243 244 230 230 230 220 221 221 245 245 246 230 230 231 240 240 240 248 248 248 247 247 248 240 241 241 244 244 244 246 246 247 198 199 199 237 237 237 237 238 239 235 236 238 243 243 243 231 231 231 244 244 245]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
3747
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   655
!
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   656
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
radioOffEntered12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
    "This resource specification was automatically generated
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
     by the ImageEditor of ST/X."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
    "Do not manually edit this!! If it is corrupted,
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
     the ImageEditor may not be able to read the specification."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   664
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
     self radioOffEntered12x12Icon inspect
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
     ImageEditor openOnClass:self andSelector:#radioOffEntered12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
     Icon flushCachedIcons
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   668
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   669
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   670
    <resource: #image>
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   671
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   672
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   673
	constantNamed:'VistaToolbarIconLibrary class radioOffEntered12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   674
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   675
@@@@(XS@0HR!!@@@@@K1=!!*J/+:JF_[0@@G.I*</F1,*,"W,@(XZ*0<7S5MCE*XZ!! :SI3M#W6-;Q3*RC0J?C5-/]8NI12J?@0J?D6==1:N3*5Z7A *WO4.O)
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   676
;.?+9JVB''8^)1=3,<N7&,X^_@G.I+-''!!9^^2"W,@@K1;!!:J4-JRG^;0@@@@@''8R>/(N_@@@@') ; colorMapFromArray:#[162 163 163 181 186 191 198 201 205 203 207 213 213 216 220 225 226 226 233 234 234 238 238 239 245 245 245 147 148 148 185 186 186 197 200 204 208 209 210 213 214 216 220 222 224 233 234 235 239 239 239 244 244 244 145 146 146 179 184 189 190 195 201 205 206 207 211 214 218 221 221 221 232 232 233 238 238 238 243 243 243 142 143 143 180 185 189 195 195 195 207 208 208 211 212 215 219 221 223 233 233 233 237 237 238 242 242 242 170 171 171 189 194 199 206 206 206 212 213 213 220 220 220 232 232 232 236 236 237 240 240 241 169 169 169 190 193 197 201 206 211 206 210 215 219 219 219 228 228 229 237 238 238 241 241 241 167 168 168 187 190 194 200 205 210 207 209 211 219 220 220 226 227 227 235 235 235 239 239 240 255 255 255 163 164 164 186 187 187 200 203 206 205 209 214 215 218 221 224 225 227 235 236 236 240 240 240 252 252 252 0 0 0 125 141 152 130 144 156 133 147 159 137 151 162 142 154 164 143 156 166 144 213 229 151 163 172 153 163 171 145 178 198 24 51 71 12 61 93 24 51 72 15 63 93 24 53 74 166 176 185 25 52 74 20 64 92 169 180 188 174 184 191 30 63 87 29 62 87 30 62 87 32 64 88 31 63 88 36 68 93 185 190 196 188 193 197 39 71 96 186 191 197 192 197 201 48 75 95 201 204 205 54 81 102 14 132 198 11 130 199 24 152 209 209 213 215 15 131 199 23 138 199 32 157 209 40 162 209 199 235 253 34 143 198 217 220 222 72 99 120 220 223 226 93 206 221 105 194 212 92 152 191 94 153 191 127 230 238 115 155 179 108 161 192 117 157 180 102 163 201 99 159 199 102 163 204 111 168 201 123 161 184 125 162 185 127 164 186 123 166 192 143 183 200 145 184 201 142 179 201 156 194 208 152 183 202 23 51 72 156 186 204 24 53 75 157 187 205 148 206 235 13 67 103 145 204 237 147 205 237 21 70 100 146 204 237 17 69 103 177 246 250 153 211 239 29 63 88 28 62 88 30 63 88 29 62 88 30 64 90 34 68 94 38 72 98 181 202 215 175 218 237 183 204 216 188 221 229 47 75 96 190 222 230 191 223 231 53 82 104 190 224 239 199 227 238 207 242 250 207 241 250 211 244 250 212 244 250 216 244 246 215 246 250 219 246 248 71 100 122 219 247 250 221 248 250 30 190 255 222 249 250 17 163 242 13 160 243 40 196 255 19 162 243 29 170 243 50 202 255 42 176 242 237 242 245 233 247 254 85 134 163 116 255 255 89 137 165 93 140 167 251 252 253 128 202 249 132 205 249 134 206 249 132 203 249 146 213 249 153 216 250 154 215 249 156 216 249 155 215 249 152 213 251 150 211 251 161 220 249 159 219 249 154 213 251 166 220 251 167 221 251 170 221 253 171 221 253 177 225 251 175 222 253 178 224 253 177 223 253 189 232 251 183 227 253 182 226 253 186 229 252 187 229 253 188 229 253 191 231 253 193 232 253 194 232 252 197 234 253 200 235 253 202 237 251 208 237 253 210 238 253 215 242 252 213 240 254 214 241 254 216 241 254 216 240 253 218 242 254 223 243 254 226 245 254 229 246 254 228 245 254]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   677
!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   678
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
radioOn12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
    "This resource specification was automatically generated
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
     by the ImageEditor of ST/X."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   682
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   683
    "Do not manually edit this!! If it is corrupted,
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
     the ImageEditor may not be able to read the specification."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
     self radioOn12x12Icon inspect
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
     ImageEditor openOnClass:self andSelector:#radioOn12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   689
     Icon flushCachedIcons
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
    <resource: #image>
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   695
	constantNamed:'VistaToolbarIconLibrary class radioOn12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   696
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
OC0@G"PRD"P^@C0<OA(=B#@#H3@JOQ(<@@@]H&QIRVH2GP@@G (OR&M4ZE9KP0(^KB!!!!XEA1]5!![Y2 ,D"MGY$56\F9SSBLRD"MHTWI/Z6%SS!!@IMA]%V5Q-
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
Z%I_\1\4I#8*S51UU55ZH38&@@@]J61VVWTZGP@@OA(@O#@QDR >@A(<OC0@I"P[F20&@C0<') ; colorMapFromArray:#[162 163 163 181 186 191 198 201 205 203 207 213 213 216 220 225 226 226 233 234 234 238 238 239 245 245 245 147 148 148 185 186 186 197 200 204 208 209 210 213 214 216 220 222 224 233 234 235 239 239 239 244 244 244 145 146 146 179 184 189 190 195 201 205 206 207 211 214 218 221 221 221 232 232 233 238 238 238 243 243 243 142 143 143 180 185 189 195 195 195 207 208 208 211 212 215 219 221 223 233 233 233 237 237 238 242 242 242 170 171 171 189 194 199 206 206 206 212 213 213 220 220 220 232 232 232 236 236 237 240 240 241 169 169 169 190 193 197 201 206 211 206 210 215 219 219 219 228 228 229 237 238 238 241 241 241 167 168 168 187 190 194 200 205 210 207 209 211 219 220 220 226 227 227 235 235 235 239 239 240 255 255 255 163 164 164 186 187 187 200 203 206 205 209 214 215 218 221 224 225 227 235 236 236 240 240 240 252 252 252 0 0 0 125 141 152 130 144 156 133 147 159 137 151 162 142 154 164 143 156 166 144 213 229 151 163 172 153 163 171 145 178 198 24 51 71 12 61 93 24 51 72 15 63 93 24 53 74 166 176 185 25 52 74 20 64 92 169 180 188 174 184 191 30 63 87 29 62 87 30 62 87 32 64 88 31 63 88 36 68 93 185 190 196 188 193 197 39 71 96 186 191 197 192 197 201 48 75 95 201 204 205 54 81 102 14 132 198 11 130 199 24 152 209 209 213 215 15 131 199 23 138 199 32 157 209 40 162 209 199 235 253 34 143 198 217 220 222 72 99 120 220 223 226 93 206 221 105 194 212]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   700
3747
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   701
radioOnDisabled12x12Icon
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   702
    "This resource specification was automatically generated
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   703
     by the ImageEditor of ST/X."
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   704
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   705
    "Do not manually edit this!! If it is corrupted,
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   706
     the ImageEditor may not be able to read the specification."
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   707
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   708
    "
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   709
     self radioOnDisabled12x12Icon inspect
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   710
     ImageEditor openOnClass:self andSelector:#radioOnDisabled12x12Icon
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   711
     Icon flushCachedIcons
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   712
    "
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   713
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   714
    <resource: #image>
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   715
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   716
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   717
	constantNamed:'VistaToolbarIconLibrary class radioOnDisabled12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   718
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3749
e48df33c3ec8 better icons
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   719
N#(:E1UAPQTWN#(:N!!@CP08=OP9C@1@:N#$_A3,0LCHGG3$:E4LXP"4RF0@KFDLWC@X;M TYGRLQH@XLPS4/IB$JIQ0>EC5APS4&O!!L7@P$>A@<8I31DDQ(.
e48df33c3ec8 better icons
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   720
PB0QJ#0''QSDXG  5MS<MMCEEN#$_Q#L(E"D+G3$:N!!@9LP8"H X1NQ@:N#(:QQTB@ 1EN#(:') ; colorMapFromArray:#[142 159 172 142 222 255 170 194 209 186 206 217 189 210 223 206 221 230 222 238 242 233 249 252 141 158 171 136 209 248 185 255 255 178 209 228 190 208 220 205 220 229 221 238 242 235 249 250 246 248 250 142 159 171 163 177 188 148 215 248 181 208 223 191 209 220 203 219 228 219 229 235 231 248 252 244 251 254 136 162 179 154 168 179 142 212 249 191 242 246 183 211 228 205 224 231 204 233 247 227 241 246 238 252 252 138 162 177 151 165 175 152 228 255 174 204 223 189 208 219 198 217 228 216 250 252 222 239 247 238 251 252 134 161 179 146 163 176 137 208 249 173 203 223 177 207 227 200 219 228 201 230 246 215 236 246 237 251 252 139 154 165 144 161 174 147 225 255 174 197 211 185 205 217 208 209 209 200 229 246 223 239 243 237 250 251 139 153 163 142 158 171 134 207 249 172 196 210 178 209 229 199 219 227 201 230 245 218 228 235 235 250 252]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
3747
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   721
!
0812d143fc65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   722
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   723
radioOnEntered12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   724
    "This resource specification was automatically generated
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   725
     by the ImageEditor of ST/X."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   726
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   727
    "Do not manually edit this!! If it is corrupted,
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   728
     the ImageEditor may not be able to read the specification."
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
     self radioOnEntered12x12Icon inspect
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
     ImageEditor openOnClass:self andSelector:#radioOnEntered12x12Icon
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   733
     Icon flushCachedIcons
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
    "
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
    <resource: #image>
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   739
	constantNamed:'VistaToolbarIconLibrary class radioOnEntered12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4066
diff changeset
   740
	ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
@@@@(XS@0HR!!@@@@@K1=!!*J/+:JF_[0@@G.I*9Q?_9J,"W,@(XZ* I:0))1>*XZ!! :RQ''X:=^)NX%:RC0J=8(9Z?.+&K_J?@0J=9";.7,;VK!!Z7A *VO&IV8
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
-)BZ):VB''8^) Y&M#Y.L,X^_@G.I+*BH"*"2"W,@@K1;!!:J4-JRG^;0@@@@@''8R>/(N_@@@@') ; colorMapFromArray:#[162 163 163 181 186 191 198 201 205 203 207 213 213 216 220 225 226 226 233 234 234 238 238 239 245 245 245 147 148 148 185 186 186 197 200 204 208 209 210 213 214 216 220 222 224 233 234 235 239 239 239 244 244 244 145 146 146 179 184 189 190 195 201 205 206 207 211 214 218 221 221 221 232 232 233 238 238 238 243 243 243 142 143 143 180 185 189 195 195 195 207 208 208 211 212 215 219 221 223 233 233 233 237 237 238 242 242 242 170 171 171 189 194 199 206 206 206 212 213 213 220 220 220 232 232 232 236 236 237 240 240 241 169 169 169 190 193 197 201 206 211 206 210 215 219 219 219 228 228 229 237 238 238 241 241 241 167 168 168 187 190 194 200 205 210 207 209 211 219 220 220 226 227 227 235 235 235 239 239 240 255 255 255 163 164 164 186 187 187 200 203 206 205 209 214 215 218 221 224 225 227 235 236 236 240 240 240 252 252 252 0 0 0 125 141 152 130 144 156 133 147 159 137 151 162 142 154 164 143 156 166 144 213 229 151 163 172 153 163 171 145 178 198 24 51 71 12 61 93 24 51 72 15 63 93 24 53 74 166 176 185 25 52 74 20 64 92 169 180 188 174 184 191 30 63 87 29 62 87 30 62 87 32 64 88 31 63 88 36 68 93 185 190 196 188 193 197 39 71 96 186 191 197 192 197 201 48 75 95 201 204 205 54 81 102 14 132 198 11 130 199 24 152 209 209 213 215 15 131 199 23 138 199 32 157 209 40 162 209 199 235 253 34 143 198 217 220 222 72 99 120 220 223 226 93 206 221 105 194 212 92 152 191 94 153 191 127 230 238 115 155 179 108 161 192 117 157 180 102 163 201 99 159 199 102 163 204 111 168 201 123 161 184 125 162 185 127 164 186 123 166 192 143 183 200 145 184 201 142 179 201 156 194 208 152 183 202 23 51 72 156 186 204 24 53 75 157 187 205 148 206 235 13 67 103 145 204 237 147 205 237 21 70 100 146 204 237 17 69 103 177 246 250 153 211 239 29 63 88 28 62 88 30 63 88 29 62 88 30 64 90 34 68 94 38 72 98 181 202 215 175 218 237 183 204 216 188 221 229 47 75 96 190 222 230 191 223 231 53 82 104 190 224 239 199 227 238 207 242 250 207 241 250 211 244 250 212 244 250 216 244 246 215 246 250 219 246 248 71 100 122 219 247 250 221 248 250 30 190 255 222 249 250 17 163 242 13 160 243 40 196 255 19 162 243 29 170 243 50 202 255 42 176 242 237 242 245 233 247 254 85 134 163 116 255 255 89 137 165 93 140 167]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8=?;7?/????????????????_>=?;1>O') ; yourself); yourself]
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
! !
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
!VistaToolbarIconLibrary class methodsFor:'documentation'!
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
version
4549
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
   748
    ^ '$Header: /cvs/stx/stx/libwidg/VistaToolbarIconLibrary.st,v 1.11 2013-04-03 13:07:38 cg Exp $'
4034
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   749
!
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   750
ac2560b4ee40 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 3749
diff changeset
   751
version_CVS
4549
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
   752
    ^ '$Header: /cvs/stx/stx/libwidg/VistaToolbarIconLibrary.st,v 1.11 2013-04-03 13:07:38 cg Exp $'
3745
2c027dc31a7d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
! !
4549
Claus Gittinger <cg@exept.de>
parents: 4204
diff changeset
   754