MacOSX2ToolbarIconLibrary.st
author sr
Tue, 11 Jun 2019 11:47:16 +0200
changeset 6604 89a0c07bbba9
parent 6415 874deb4084ca
child 6772 cd06b6bf8dc9
permissions -rw-r--r--
#BUGFIX by Stefan Reise fixed recursion when calling #showSelectedFont #updateFamilyList class: FontPanel added: #updateFamilyListAndDoShowSelectedFont: changed: #showSelectedFont #updateFamilyList
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6107
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     1
"
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     2
 COPYRIGHT (c) 2015 by Claus Gittinger
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     3
              All Rights Reserved
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     4
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     5
 This software is furnished under a license and may be used
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     6
 only in accordance with the terms of that license and with the
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     8
 be provided or otherwise made available to, or used by, any
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
     9
 other person.  No title to or ownership of the software is
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    10
 hereby transferred.
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    11
"
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libwidg' }"
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Smalltalk }"
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
MacOSXToolbarIconLibrary subclass:#MacOSX2ToolbarIconLibrary
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Smalltalk'
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!MacOSX2ToolbarIconLibrary class methodsFor:'documentation'!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
6107
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    25
copyright
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    26
"
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    27
 COPYRIGHT (c) 2015 by Claus Gittinger
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    28
              All Rights Reserved
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    29
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    30
 This software is furnished under a license and may be used
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    31
 only in accordance with the terms of that license and with the
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    33
 be provided or otherwise made available to, or used by, any
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    34
 other person.  No title to or ownership of the software is
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    35
 hereby transferred.
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    36
"
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    37
!
bfd73632f6d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5464
diff changeset
    38
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
documentation
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    ToolbarIconLibrary := MacOSX2ToolbarIconLibrary
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    This is a style specific icon library for a mac-OSX look (yosemity).
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    Never access this iconlibrary directly from an application -
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    always use ToolbarIconLibrary, which is an alias to one of the style specific
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    icon libs.
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    Notice and Warning:
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
        only redefine existing icons here; never add ionly to here.
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        For every icon-method here, there MUST be a corresponding (albeit
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
        possibly ugly) icon-method in GenericToolBarIcon.
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
"
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
! !
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!MacOSX2ToolbarIconLibrary class methodsFor:'image specs'!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
checkToggleOffDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
     self checkToggleOffDisabledIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
     ImageEditor openOnClass:self andSelector:#checkToggleOffDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    75
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOffDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    76
        ifAbsentPut:[(Depth4Image width:16 height:16) bitsPerSample:(#[4]); bits:#[204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 186 170 170 171 204 204 204 204 221 221 221 221 204 204 204 189 238 238 238 238 219 204 204 190 238 238 238 238 235 204 204 190 238 238 238 238 235 204 204 190 238 238 238 238 235 204 204 190 238 238 238 238 235 204 204 190 238 238 238 238 235 204 204 190 238 238 238 238 235 204 204 189 238 238 238 238 219 204 204 204 222 238 238 237 204 204 204 204 187 187 187 187 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    77
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
5464
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    80
checkToggleOffEnteredIcon
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    81
    "This resource specification was automatically generated
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    82
     by the ImageEditor of ST/X."
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    83
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    84
    "Do not manually edit this!! If it is corrupted,
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    85
     the ImageEditor may not be able to read the specification."
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    86
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    87
    "
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    88
     self checkToggleOffEnteredIcon inspect
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    89
     ImageEditor openOnClass:self andSelector:#checkToggleOffEnteredIcon
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    90
     Icon flushCachedIcons
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    91
    "
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    92
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    93
    <resource: #image>
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    94
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
    95
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    96
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOffEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    97
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 16 16 16 16 16 16 3 0 0 0 0 0 0 2 10 12 4 4 4 4 4 4 12 10 2 0 0 0 0 13 17 8 21 21 21 21 21 21 8 17 13 0 0 0 0 15 8 21 21 21 21 21 21 21 21 8 15 0 0 0 0 18 8 21 21 21 21 21 21 21 21 8 18 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 11 7 21 21 21 21 21 21 21 21 7 11 0 0 0 0 14 19 7 8 8 8 8 8 8 7 19 14 0 0 0 0 0 14 11 6 6 6 6 6 6 11 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    98
            colorMapFromArray:#[185 185 185 223 222 223 187 187 187 163 163 163 237 237 237 214 213 214 178 178 178 241 241 241 254 254 254 218 217 218 193 193 193 184 184 184 221 221 221 173 173 173 199 199 199 175 175 175 151 151 151 236 236 236 177 177 177 216 216 216 225 217 212 255 255 255]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
    99
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5464
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   100
!
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   101
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
checkToggleOffIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
     self checkToggleOffIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
     ImageEditor openOnClass:self andSelector:#checkToggleOffIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   118
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOffIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   119
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 16 16 16 16 16 16 3 0 0 0 0 0 0 2 10 12 4 4 4 4 4 4 12 10 2 0 0 0 0 13 17 8 21 21 21 21 21 21 8 17 13 0 0 0 0 15 8 21 21 21 21 21 21 21 21 8 15 0 0 0 0 18 8 21 21 21 21 21 21 21 21 8 18 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 6 8 21 21 21 21 21 21 21 21 8 6 0 0 0 0 11 7 21 21 21 21 21 21 21 21 7 11 0 0 0 0 14 19 7 8 8 8 8 8 8 7 19 14 0 0 0 0 0 14 11 6 6 6 6 6 6 11 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   120
            colorMapFromArray:#[185 185 185 223 222 223 187 187 187 163 163 163 237 237 237 214 213 214 178 178 178 241 241 241 254 254 254 218 217 218 193 193 193 184 184 184 221 221 221 173 173 173 199 199 199 175 175 175 151 151 151 236 236 236 177 177 177 216 216 216 225 217 212 255 255 255]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   121
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
checkToggleOnDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
     self checkToggleOnDisabledIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
     ImageEditor openOnClass:self andSelector:#checkToggleOnDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   140
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOnDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   141
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 3 3 3 3 2 1 0 0 0 0 0 1 4 5 6 6 6 6 6 5 5 4 1 0 0 0 0 2 5 6 6 6 6 6 5 7 8 5 2 0 0 0 0 3 6 6 6 6 6 9 10 11 12 5 3 0 0 0 0 3 6 6 6 6 5 13 14 15 16 6 3 0 0 0 0 3 6 17 18 9 19 20 14 21 17 6 3 0 0 0 0 3 5 22 11 10 23 11 24 21 6 6 3 0 0 0 0 3 6 25 26 27 28 29 30 5 6 6 3 0 0 0 0 3 6 9 31 32 27 33 17 6 6 6 3 0 0 0 0 2 5 6 19 0 4 25 6 6 6 5 2 0 0 0 0 1 4 5 6 33 21 6 6 6 5 4 1 0 0 0 0 0 1 2 3 3 3 3 3 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   142
            colorMapFromArray:#[143 143 143 170 170 170 155 155 155 149 149 149 150 150 150 152 152 152 153 153 153 169 169 169 153 153 153 151 151 151 222 222 222 255 255 255 166 166 166 159 159 159 253 253 253 238 238 238 146 146 146 152 152 152 161 161 161 150 150 150 240 240 240 147 147 147 168 168 168 217 217 217 214 214 214 147 147 147 239 239 239 254 254 254 252 252 252 242 242 242 143 143 143 142 142 142 246 246 246 151 151 151]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   143
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
5464
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   146
checkToggleOnEnteredIcon
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   147
    "This resource specification was automatically generated
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   148
     by the ImageEditor of ST/X."
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   149
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   150
    "Do not manually edit this!! If it is corrupted,
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   151
     the ImageEditor may not be able to read the specification."
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   152
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   153
    "
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   154
     self checkToggleOnEnteredIcon inspect
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   155
     ImageEditor openOnClass:self andSelector:#checkToggleOnEnteredIcon
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   156
     Icon flushCachedIcons
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   157
    "
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   158
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   159
    <resource: #image>
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   160
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   161
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   162
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOnEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   163
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 31 32 16 16 16 16 32 31 39 0 0 0 0 0 39 24 27 3 3 3 3 3 22 27 24 39 0 0 0 0 31 27 3 3 3 3 3 14 10 6 27 31 0 0 0 0 32 3 3 3 3 3 46 41 47 44 22 32 0 0 0 0 16 3 3 3 3 42 29 30 11 25 3 16 0 0 0 0 16 3 15 23 33 28 13 18 8 43 3 16 0 0 0 0 16 42 19 47 5 38 47 48 21 3 3 16 0 0 0 0 16 3 34 26 35 20 4 45 42 3 3 16 0 0 0 0 32 3 46 40 37 35 2 43 3 3 3 32 0 0 0 0 31 27 3 9 0 12 17 3 3 3 27 31 0 0 0 0 39 24 27 3 1 21 3 3 3 27 24 39 0 0 0 0 0 39 31 32 16 16 16 16 32 31 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   164
            colorMapFromArray:#[58 131 213 64 148 243 79 145 217 68 153 248 218 232 245 157 199 244 70 152 244 204 211 224 70 139 215 63 147 242 120 180 244 209 226 243 78 143 214 211 230 248 68 151 244 66 150 244 57 144 248 57 140 235 252 253 254 119 179 243 248 251 254 58 141 236 66 151 246 98 167 243 60 146 248 57 138 231 210 227 243 66 151 248 64 147 240 91 162 240 251 253 254 80 153 243 56 144 248 66 149 244 59 139 230 254 254 255 223 222 223 232 240 249 142 190 241 133 178 234 54 129 214 155 199 244 67 151 246 66 150 245 112 175 241 51 131 223 65 149 244 255 255 255 141 183 226]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   165
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5464
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   166
!
54c3f2cf5276 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5450
diff changeset
   167
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
checkToggleOnIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
     self checkToggleOnIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
     ImageEditor openOnClass:self andSelector:#checkToggleOnIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   184
        constantNamed:'MacOSX2ToolbarIconLibrary class checkToggleOnIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   185
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 31 32 16 16 16 16 32 31 39 0 0 0 0 0 39 24 27 3 3 3 3 3 22 27 24 39 0 0 0 0 31 27 3 3 3 3 3 14 10 6 27 31 0 0 0 0 32 3 3 3 3 3 46 41 47 44 22 32 0 0 0 0 16 3 3 3 3 42 29 30 11 25 3 16 0 0 0 0 16 3 15 23 33 28 13 18 8 43 3 16 0 0 0 0 16 42 19 47 5 38 47 48 21 3 3 16 0 0 0 0 16 3 34 26 35 20 4 45 42 3 3 16 0 0 0 0 32 3 46 40 37 35 2 43 3 3 3 32 0 0 0 0 31 27 3 9 0 12 17 3 3 3 27 31 0 0 0 0 39 24 27 3 1 21 3 3 3 27 24 39 0 0 0 0 0 39 31 32 16 16 16 16 32 31 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   186
            colorMapFromArray:#[58 131 213 64 148 243 79 145 217 68 153 248 218 232 245 157 199 244 70 152 244 204 211 224 70 139 215 63 147 242 120 180 244 209 226 243 78 143 214 211 230 248 68 151 244 66 150 244 57 144 248 57 140 235 252 253 254 119 179 243 248 251 254 58 141 236 66 151 246 98 167 243 60 146 248 57 138 231 210 227 243 66 151 248 64 147 240 91 162 240 251 253 254 80 153 243 56 144 248 66 149 244 59 139 230 254 254 255 223 222 223 232 240 249 142 190 241 133 178 234 54 129 214 155 199 244 67 151 246 66 150 245 112 175 241 51 131 223 65 149 244 255 255 255 141 183 226]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   187
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 31 248 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 63 252 31 248 0 0 0 0]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
comboMenuButtonDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
     self comboMenuButtonDisabledIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
     ImageEditor openOnClass:self andSelector:#comboMenuButtonDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   206
        constantNamed:'MacOSX2ToolbarIconLibrary class comboMenuButtonDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   207
        ifAbsentPut:[(Depth8Image width:16 height:18) bits:#[0 1 1 1 1 1 1 1 1 0 1 1 2 3 4 5 6 7 6 6 6 7 6 6 6 6 6 6 8 9 10 11 8 8 8 8 8 12 12 12 12 8 8 8 12 8 13 14 15 5 5 5 5 15 5 5 5 5 15 5 5 5 9 16 2 9 9 2 9 2 9 9 9 2 2 9 9 9 9 17 13 18 13 13 13 13 18 13 18 18 13 13 18 13 13 19 16 16 20 20 16 16 20 20 16 20 16 20 16 20 16 21 1 1 22 22 23 24 25 1 1 25 24 23 1 1 22 26 27 28 27 28 0 29 30 31 31 30 29 32 27 27 27 33 34 34 34 34 34 35 36 30 30 36 35 34 34 34 34 37 38 39 38 39 38 39 34 40 41 34 39 38 39 38 38 42 21 21 43 43 21 21 43 21 21 43 21 43 43 21 21 44 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 45 46 47 47 47 47 47 47 46 46 47 47 46 47 47 46 48 49 49 49 49 33 49 33 49 49 49 33 49 49 33 37 50 51 37 51 51 51 51 37 51 37 37 37 37 37 37 52 53 50 50 50 50 50 50 50 50 50 50 50 42 54 55 49 56 57 58 57 57 58 58 57 57 57 57 58 58 59 35 60 5]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   208
            colorMapFromArray:#[157 157 157 157 157 157 162 162 162 217 217 217 232 232 232 164 164 164 166 166 166 167 167 167 165 165 165 162 162 162 164 164 164 231 231 231 165 165 165 161 161 161 215 215 215 163 163 163 158 158 158 151 151 151 160 160 160 150 150 150 159 159 159 148 148 148 156 156 156 221 221 221 244 244 244 161 161 161 147 147 147 155 155 155 154 154 154 241 241 241 245 245 245 160 160 160 158 158 158 144 144 144 153 153 153 155 155 155 240 240 240 143 143 143 150 150 150 151 151 151 237 237 237 236 236 236 141 141 141 149 149 149 139 139 139 137 137 137 145 145 145 145 145 145 136 136 136 144 144 144 142 142 142 142 142 142 139 139 139 159 159 159 141 141 141 138 138 138 226 226 226 132 132 132 131 131 131 138 138 138 223 223 223]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   209
            mask:((ImageMask width:16 height:18) bits:#[255 254 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
comboMenuButtonIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
     self comboMenuButtonIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
     ImageEditor openOnClass:self andSelector:#comboMenuButtonIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   228
        constantNamed:'MacOSX2ToolbarIconLibrary class comboMenuButtonIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   229
        ifAbsentPut:[(Depth8Image width:16 height:18) bits:#[36 64 93 93 93 64 18 64 64 36 64 64 47 20 62 0 68 9 68 68 95 9 68 68 68 68 95 95 35 102 78 53 35 35 4 4 35 63 63 63 63 80 35 35 63 4 99 77 60 79 79 0 0 60 32 32 79 0 60 79 79 79 102 96 58 103 29 58 29 58 29 103 29 88 58 29 29 103 29 44 56 84 98 98 56 98 84 56 84 84 56 56 84 98 56 10 39 39 82 82 39 39 82 82 39 82 39 82 39 82 39 7 92 92 19 19 51 49 15 92 92 48 72 16 92 92 19 2 74 104 74 104 54 41 75 12 43 75 41 21 74 74 74 59 100 100 100 26 100 91 38 17 52 6 91 26 26 100 26 27 83 23 40 23 83 23 71 31 90 71 23 83 23 83 83 97 37 37 5 5 37 37 5 37 37 5 37 5 5 66 37 22 33 61 1 1 61 1 61 61 61 33 1 61 1 1 33 94 89 105 30 105 105 30 105 89 89 30 105 89 30 105 89 3 101 101 101 101 50 101 73 101 101 101 73 101 28 50 85 57 70 86 70 70 70 70 13 70 13 13 86 45 86 86 8 25 24 24 24 24 24 24 24 24 24 24 24 55 42 67 76 69 87 14 87 87 46 46 87 87 87 87 46 14 81 65 34 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   230
            colorMapFromArray:#[101 172 248 53 140 250 61 135 247 46 108 250 105 175 248 57 144 249 207 230 254 64 139 247 43 118 250 109 178 248 67 143 247 233 232 233 89 165 249 43 131 251 43 93 250 93 168 249 146 198 251 225 240 254 80 159 246 78 159 248 141 189 240 82 161 249 49 116 249 62 149 249 42 128 251 117 150 239 67 152 248 55 125 248 45 133 250 95 170 248 49 136 250 198 225 253 101 172 247 52 140 250 181 192 232 105 175 247 81 160 247 57 143 249 207 230 253 84 163 248 61 147 248 212 232 253 42 124 251 88 165 249 70 147 246 43 130 251 42 93 250 99 167 243 92 168 249 221 237 253 46 134 251 146 197 251 225 239 254 193 212 235 81 161 249 42 127 251 90 167 248 65 117 245 95 169 248 57 130 247 100 172 247 52 140 249 194 213 236 104 175 247 81 160 246 111 141 235 56 143 249 42 116 251 109 177 247 185 197 236 43 130 250 68 152 249 220 237 253 46 134 250 72 156 248 224 239 254 77 118 242 137 184 240 108 171 243 101 173 248 105 176 248 61 107 244 85 163 249 62 147 249 90 166 248 46 130 250 44 131 251 43 94 250 95 169 247 48 136 249 197 224 253 74 157 248 78 160 248 80 160 246 48 111 249 108 177 247 91 159 243 52 121 249 91 167 249 93 167 247 67 152 249 46 133 250 97 170 247 96 170 248 72 155 248 49 137 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   231
            mask:((ImageMask width:16 height:18) bits:#[255 254 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
radioOffDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
     self radioOffDisabledIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
     ImageEditor openOnClass:self andSelector:#radioOffDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   250
        constantNamed:'MacOSX2ToolbarIconLibrary class radioOffDisabledIcon'
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   251
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@A 8KB08F@@@@@@@@@@@_@Q$BF1,BFPD_@@@@@@@_GAPQDQDQDQDTGA<@@@@@EP\QDQDQDQDQDP\U@@@@FQHQDQDQDQDQ
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   253
DQDQD!!$@@@(QDQDQDQDQDQDQDQDJ@@@XDQDQDQDQDQDQDQDQF@@@D1DQDQDQDQDQDQDQDQL@@A4QDQDQDQDQDQDQDQD]@@@DAQDQDQDQDQDQDQDEA@@@@A@W
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   254
DQDQDQDQDQDWD@@@@@@CCQ\QDQDQDQDWCPL@@@@@@@LPAQDQDQDED@L@@@@@@@@@@@P]C0<]A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   255
            colorMapFromArray:#[254 254 254 173 173 173 213 213 213 204 203 204 199 199 199 212 212 212 185 185 185 225 225 225 250 250 250 214 213 214 182 182 182 155 155 155 249 249 249 195 195 195 167 167 167 180 180 180 193 193 193 233 233 233 206 206 206 179 179 179 219 219 219 178 178 178 223 222 223 231 231 231 177 177 177 190 190 190 208 207 208 230 230 230 176 176 176 189 189 189 207 206 207 193 192 193]
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   256
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@G8A?8O?0??G?>_?9??''?>_?9??#?<O?0_>@_ @@@b'); yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
radioOffIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
     self radioOffIcon inspect
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   268
     ImageEditor openOnClass:self andSelector:#radioOffIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
    ^Icon
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   275
        constantNamed:'MacOSX2ToolbarIconLibrary class radioOffIcon'
6413
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   276
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   277
@@@@@@@@@@@@@@@@@@@@@@@@@@@@A 8KB08F@@@@@@@@@@@_@Q$BF1,BFPD_@@@@@@@_GAPH@B@ @@ TGA<@@@@@EP\ HB@ HB@ H@\U@@@@FQH HB@ HB@ 
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   278
HB@ D!!$@@@(QHB@ HB@ HB@ HADJ@@@XCB@ HB@ HB@ HB@LF@@@D00 HB@ HB@ HB@ CAL@@A4QHB@ HB@ HB@ HAD]@@@DAR@ HB@ HB@ HB@EA@@@@A@W
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   279
HB@ HB@ HB@WD@@@@@@CCQ\ HB@ HB@WCPL@@@@@@@LPAQDLCADED@L@@@@@@@@@@@P]C0<]A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   280
            colorMapFromArray:#[254 254 254 173 173 173 213 213 213 204 203 204 199 199 199 212 212 212 185 185 185 225 225 225 250 250 250 214 213 214 182 182 182 155 155 155 249 249 249 195 195 195 167 167 167 180 180 180 193 193 193 233 233 233 206 206 206 179 179 179 219 219 219 178 178 178 223 222 223 231 231 231 177 177 177 190 190 190 208 207 208 230 230 230 176 176 176 189 189 189 207 206 207 193 192 193 255 255 255]
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   281
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@G8A?8O?0??G?>_?9??''?>_?9??#?<O?0_>@_ @@@b'); yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
radioOnDisabledIcon
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
    "
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   292
     self radioOnDisabledIcon inspect
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   293
     ImageEditor openOnClass:self andSelector:#radioOnDisabledIcon
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
    ^Icon
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   300
        constantNamed:'MacOSX2ToolbarIconLibrary class radioOnDisabledIcon'
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   301
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   302
"H"H"H"H"H"H"H5G]M"H"H"C(A&QB#"H"C\Y&Y&Q\8"H(Y&Y&Y$Z"H4I&Q]1&YCX!!A&QK%HY$T"G&Y]\1W&Y^H^Y%;3K^Y%8!!A&Q&;$Y$T"MBY%/=)&P6H"!!
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   303
&Y&Y&Q*H"C\Y&Y&Q\8"H :@Y$P(8"H"H#T]46H"H"H"H"H"H"H b')
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   304
            colorMapFromArray:#[150 150 150 152 152 152 165 165 165 217 217 217 158 158 158 245 245 245 147 147 147 151 151 151 238 238 238 153 153 153 155 155 155 242 242 242 255 255 255 170 170 170 244 244 244 135 135 135]
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   305
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@G8A?8O?0??G?>_?9??''?>_?9??#?<O?0_>@_ @@@b'); yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   308
radioOnIcon
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
    "This resource specification was automatically generated
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
     by the ImageEditor of ST/X."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   312
    "Do not manually edit this!! If it is corrupted,
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
     the ImageEditor may not be able to read the specification."
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   314
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
    "
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   316
     self radioOnIcon inspect
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   317
     ImageEditor openOnClass:self andSelector:#radioOnIcon
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
     Icon flushCachedIcons
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
    "
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
    <resource: #image>
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
    ^Icon
6415
874deb4084ca #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6413
diff changeset
   324
        constantNamed:'MacOSX2ToolbarIconLibrary class radioOnIcon'
6413
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   325
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   326
@@@@@@@@@@@@@@@@@@@@@@@@@@@GE@HOC0HTA0@@@@@@@@@NE0LED!!HE@1\N@@@@@@@ND@TUEQTUEQTED@8@@@@GE0TUEQTUEQTUEPTWA0@@E@LUEQTFA@PF
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   327
EQTU@1P@@@HEEQTFC@,MC@XUEPTB@@@OD!!TUAADSD1DDEQTRC0@@C1HUEPPVD1LVAATUD <@@@HEEQTF@P$I@PXUEPTB@@@T@1TUEP JB  UEQTCE@@@A1\E
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   328
EQTUEQTUEQTEE0\@@@@ND@TUEQTUEQTED@8@@@@@@@8W@0TRD TCE08@@@@@@@@@A1PBC0<BE@\@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   329
            colorMapFromArray:#[223 222 223 85 149 218 93 160 240 61 147 248 65 149 244 65 151 248 67 151 246 187 203 228 58 141 236 219 232 245 38 115 212 222 236 250 109 173 243 225 238 251 151 185 232 66 147 246 64 148 245 226 238 250 67 152 248 255 255 255 133 178 234 68 153 248 220 233 246 82 154 243]
cb8f21c7d95b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6181
diff changeset
   330
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@O<A?8O?1??''?>_?9??''?>_?9??''?>O?0_>@?0@@@b'); yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   331
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   332
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   333
scrollDownDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   334
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   335
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   336
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   337
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   338
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   339
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   340
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   341
     self scrollDownDisabledIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   342
     ImageEditor openOnClass:self andSelector:#scrollDownDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   343
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   344
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   345
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   346
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   347
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   348
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   349
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollDownDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   350
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 51 33 17 0 0 0 0 4 51 49 20 0 0 0 0 0 67 49 64 0 0 0 0 0 4 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   351
            colorMapFromArray:#[0 0 0 192 192 190 176 174 170 156 158 160 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   352
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 7 240 7 240 3 224 1 192 0 0 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   353
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   354
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   355
scrollDownEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   356
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   357
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   358
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   359
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   360
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   361
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   362
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   363
     self scrollDownEnteredIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   364
     ImageEditor openOnClass:self andSelector:#scrollDownEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   365
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   366
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   367
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   368
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   369
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   370
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   371
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollDownEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   372
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 25 147 51 0 0 0 0 4 33 25 52 0 0 0 0 0 69 136 64 0 0 0 0 0 4 116 0 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   373
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 136 134 130 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   374
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 7 240 7 240 3 224 1 192 0 128 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   375
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   376
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   377
scrollDownIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   378
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   379
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   380
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   381
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   382
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   383
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   384
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   385
     self scrollDownIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   386
     ImageEditor openOnClass:self andSelector:#scrollDownIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   387
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   388
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   389
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   390
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   391
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   392
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   393
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollDownIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   394
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 8 12 13 15 16 14 0 0 0 0 0 0 0 0 0 18 2 5 9 11 10 18 0 0 0 0 0 0 0 0 0 0 18 1 4 7 18 0 0 0 0 0 0 0 0 0 0 0 0 18 3 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   395
            colorMapFromArray:#[0 0 0 32 30 30 32 34 30 44 46 50 52 54 50 72 74 70 84 86 90 92 92 90 120 120 120 120 122 120 136 134 130 140 140 140 156 158 160 176 174 170 184 182 180 184 184 180 192 192 190 228 228 230 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   396
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 7 240 7 240 3 224 1 192 0 128 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   397
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   398
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   399
scrollLeftDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   400
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   401
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   402
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   403
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   404
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   405
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   406
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   407
     self scrollLeftDisabledIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   408
     ImageEditor openOnClass:self andSelector:#scrollLeftDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   409
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   410
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   411
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   412
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   413
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   414
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   415
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollLeftDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   416
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 48 0 0 0 0 0 0 67 48 0 0 0 0 0 4 51 48 0 0 0 0 0 67 51 32 0 0 0 0 0 4 17 16 0 0 0 0 0 0 65 16 0 0 0 0 0 0 4 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   417
            colorMapFromArray:#[0 0 0 192 192 190 176 174 170 120 120 120 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   418
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 1 128 3 128 7 128 15 128 7 128 3 128 1 128 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   419
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   420
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   421
scrollLeftEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   422
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   423
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   424
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   425
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   426
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   427
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   428
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   429
     self scrollLeftEnteredIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   430
     ImageEditor openOnClass:self andSelector:#scrollLeftEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   431
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   432
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   433
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   434
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   435
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   436
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   437
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollLeftEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   438
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 32 0 0 0 0 0 0 50 16 0 0 0 0 0 3 65 112 0 0 0 0 0 53 97 112 0 0 0 0 0 3 103 112 0 0 0 0 0 0 55 112 0 0 0 0 0 0 3 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   439
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 244 246 250 32 30 30 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   440
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 1 128 3 128 7 128 15 128 7 128 3 128 1 128 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   441
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   442
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   443
scrollLeftIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   444
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   445
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   446
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   447
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   448
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   449
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   450
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   451
     self scrollLeftIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   452
     ImageEditor openOnClass:self andSelector:#scrollLeftIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   453
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   454
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   455
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   456
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   457
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   458
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   459
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollLeftIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   460
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 6 0 0 0 0 0 0 0 0 0 0 0 0 0 18 2 8 0 0 0 0 0 0 0 0 0 0 0 0 18 1 5 12 0 0 0 0 0 0 0 0 0 0 0 18 3 4 9 13 0 0 0 0 0 0 0 0 0 0 0 0 18 7 11 15 0 0 0 0 0 0 0 0 0 0 0 0 0 18 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   461
            colorMapFromArray:#[0 0 0 32 30 30 32 34 30 44 46 50 52 54 50 72 74 70 84 86 90 92 92 90 120 120 120 120 122 120 136 134 130 140 140 140 156 158 160 176 174 170 184 182 180 184 184 180 192 192 190 228 228 230 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   462
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 1 128 3 128 7 128 15 128 7 128 3 128 1 128 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   463
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   464
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   465
scrollRightActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   466
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   467
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   468
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   469
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   470
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   471
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   472
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   473
     self scrollRightActiveIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   474
     ImageEditor openOnClass:self andSelector:#scrollRightActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   475
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   476
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   477
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   478
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   479
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   480
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   481
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollRightActiveIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   482
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 0 0 0 0 0 0 0 114 80 0 0 0 0 0 0 161 101 0 0 0 0 0 0 161 152 80 0 0 0 0 0 163 149 0 0 0 0 0 0 164 80 0 0 0 0 0 0 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   483
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 140 140 140 136 134 130 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   484
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 3 0 3 128 3 192 3 224 3 192 3 128 3 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   485
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   486
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   487
scrollRightDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   488
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   489
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   490
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   491
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   492
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   493
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   494
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   495
     self scrollRightDisabledIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   496
     ImageEditor openOnClass:self andSelector:#scrollRightDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   497
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   498
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   499
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   500
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   501
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   502
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   503
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollRightDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   504
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 0 0 0 0 0 0 0 34 64 0 0 0 0 0 0 34 36 0 0 0 0 0 0 50 34 64 0 0 0 0 0 17 20 0 0 0 0 0 0 17 64 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   505
            colorMapFromArray:#[0 0 0 192 192 190 120 120 120 156 158 160 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   506
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 3 0 3 128 3 192 3 224 3 192 3 128 3 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   507
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   508
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   509
scrollRightEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   510
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   511
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   512
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   513
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   514
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   515
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   516
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   517
     self scrollRightEnteredIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   518
     ImageEditor openOnClass:self andSelector:#scrollRightEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   519
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   520
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   521
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   522
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   523
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   524
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   525
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollRightEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   526
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 0 0 0 0 0 0 0 114 80 0 0 0 0 0 0 161 101 0 0 0 0 0 0 161 152 80 0 0 0 0 0 163 149 0 0 0 0 0 0 164 80 0 0 0 0 0 0 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   527
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 140 140 140 136 134 130 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   528
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 3 0 3 128 3 192 3 224 3 192 3 128 3 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   529
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   530
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   531
scrollRightIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   532
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   533
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   534
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   535
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   536
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   537
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   538
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   539
     self scrollRightIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   540
     ImageEditor openOnClass:self andSelector:#scrollRightIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   541
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   542
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   543
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   544
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   545
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   546
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   547
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollRightIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   548
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 146 0 0 0 0 0 0 0 165 32 0 0 0 0 0 0 126 66 0 0 0 0 0 0 31 61 32 0 0 0 0 0 138 178 0 0 0 0 0 0 202 32 0 0 0 0 0 0 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   549
            colorMapFromArray:#[0 0 0 176 174 170 244 246 250 52 54 50 32 30 30 32 34 30 184 182 180 156 158 160 184 184 180 84 86 90 140 140 140 92 92 90 192 192 190 44 46 50 72 74 70 120 122 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   550
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 3 0 3 128 3 192 3 224 3 192 3 128 3 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   551
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   552
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   553
scrollUpActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   554
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   555
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   556
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   557
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   558
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   559
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   560
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   561
     self scrollUpActiveIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   562
     ImageEditor openOnClass:self andSelector:#scrollUpActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   563
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   564
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   565
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   566
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   567
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   568
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   569
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollUpActiveIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   570
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 0 0 0 3 99 0 0 0 0 0 0 52 119 48 0 0 0 0 3 34 24 131 0 0 0 0 5 88 136 136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   571
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   572
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 128 1 192 3 224 7 240 7 240 0 0 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   573
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   574
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   575
scrollUpDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   576
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   577
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   578
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   579
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   580
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   581
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   582
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   583
     self scrollUpDisabledIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   584
     ImageEditor openOnClass:self andSelector:#scrollUpDisabledIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   585
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   586
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   587
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   588
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   589
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   590
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   591
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollUpDisabledIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   592
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 0 0 0 0 0 0 4 52 0 0 0 0 0 0 67 49 64 0 0 0 0 4 51 49 20 0 0 0 0 3 51 33 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   593
            colorMapFromArray:#[0 0 0 192 192 190 176 174 170 156 158 160 244 246 250]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   594
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 128 1 192 3 224 7 240 7 240 0 0 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   595
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   596
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   597
scrollUpEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   598
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   599
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   600
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   601
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   602
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   603
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   604
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   605
     self scrollUpEnteredIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   606
     ImageEditor openOnClass:self andSelector:#scrollUpEnteredIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   607
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   608
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   609
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   610
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   611
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   612
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   613
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollUpEnteredIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   614
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 0 0 0 3 99 0 0 0 0 0 0 52 119 48 0 0 0 0 3 34 24 131 0 0 0 0 5 88 136 136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   615
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   616
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 128 1 192 3 224 7 240 7 240 0 0 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   617
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   618
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   619
scrollUpIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   620
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   621
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   622
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   623
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   624
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   625
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   626
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   627
     self scrollUpIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   628
     ImageEditor openOnClass:self andSelector:#scrollUpIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   629
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   630
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   631
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   632
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   633
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   634
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   635
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollUpIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   636
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 1 209 0 0 0 0 0 0 19 42 16 0 0 0 0 1 78 249 145 0 0 0 0 8 198 119 181 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   637
            colorMapFromArray:#[0 0 0 244 246 250 52 54 50 32 30 30 32 34 30 184 182 180 156 158 160 184 184 180 84 86 90 140 140 140 92 92 90 192 192 190 120 120 120 44 46 50 72 74 70 120 122 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   638
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 128 1 192 3 224 7 240 7 240 0 0 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   639
! !
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   640
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   641
!MacOSX2ToolbarIconLibrary class methodsFor:'image specs - widgets'!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   642
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   643
scrollDownActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   644
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   645
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   646
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   647
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   648
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   649
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   650
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   651
     self scrollDownActiveIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   652
     ImageEditor openOnClass:self andSelector:#scrollDownActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   653
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   654
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   655
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   656
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   657
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   658
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   659
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollDownActiveIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   660
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 25 147 51 0 0 0 0 4 33 25 52 0 0 0 0 0 69 136 64 0 0 0 0 0 4 116 0 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   661
            colorMapFromArray:#[0 0 0 72 74 70 32 34 30 136 134 130 244 246 250 32 30 30 84 86 90 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   662
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 7 240 7 240 3 224 1 192 0 128 0 0 0 0 0 0 0 0 0 0]; yourself); yourself]
5450
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   663
!
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   664
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   665
scrollLeftActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   666
    "This resource specification was automatically generated
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   667
     by the ImageEditor of ST/X."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   668
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   669
    "Do not manually edit this!! If it is corrupted,
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   670
     the ImageEditor may not be able to read the specification."
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   671
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   672
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   673
     self scrollLeftActiveIcon inspect
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   674
     ImageEditor openOnClass:self andSelector:#scrollLeftActiveIcon
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   675
     Icon flushCachedIcons
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   676
    "
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   677
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   678
    <resource: #image>
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   679
c8a44aa28b56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5432
diff changeset
   680
    ^Icon
6181
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   681
        constantNamed:'MacOSX2ToolbarIconLibrary class scrollLeftActiveIcon'
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   682
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 48 0 0 0 0 0 0 67 32 0 0 0 0 0 4 82 128 0 0 0 0 0 70 114 128 0 0 0 0 0 4 120 128 0 0 0 0 0 0 72 128 0 0 0 0 0 0 4 128 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   683
            colorMapFromArray:#[0 0 0 244 244 240 72 74 70 32 34 30 244 246 250 32 30 30 44 46 50 52 54 50 120 120 120]
f87b4ee3d071 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6107
diff changeset
   684
            mask:((ImageMask width:16 height:16) bits:#[0 0 0 0 0 0 0 0 0 0 1 128 3 128 7 128 15 128 7 128 3 128 1 128 0 128 0 0 0 0 0 0]; yourself); yourself]
5432
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
! !
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
!MacOSX2ToolbarIconLibrary class methodsFor:'documentation'!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   689
version
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
    ^ '$Header$'
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
!
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
version_CVS
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
    ^ '$Header$'
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
! !
aa919cbe90db initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696