MacOSX2DarkToolbarIconLibrary.st
author sr
Tue, 11 Jun 2019 11:47:16 +0200
changeset 6604 89a0c07bbba9
parent 6414 4209b6242799
child 6758 28d5c06d1008
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:
6414
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libwidg' }"
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"{ NameSpace: Smalltalk }"
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
MacOSX2ToolbarIconLibrary subclass:#MacOSX2DarkToolbarIconLibrary
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	instanceVariableNames:''
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	classVariableNames:''
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
	poolDictionaries:''
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
	category:'Interface-Smalltalk'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
!MacOSX2DarkToolbarIconLibrary class methodsFor:'documentation'!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
documentation
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
"
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
    documentation to be added.
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
    [author:]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
        Claus Gittinger
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
    [instance variables:]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
    [class variables:]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
    [see also:]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
! !
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
!MacOSX2DarkToolbarIconLibrary class methodsFor:'image specs'!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
radioOffDisabledIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
    "This resource specification was automatically generated
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
     by the ImageEditor of ST/X."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
    "Do not manually edit this!! If it is corrupted,
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
     the ImageEditor may not be able to read the specification."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
     self radioOffDisabledIcon inspect
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
     ImageEditor openOnClass:self andSelector:#radioOffDisabledIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
     Icon flushCachedIcons
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    <resource: #image>
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    ^Icon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
        constantNamed:'MacOSX2DarkToolbarIconLibrary class radioOffDisabledIcon'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
@@@@@@@@@@@@@@@@@@@@@@@@@@@ZF 8KB08ZF @@@@@@@@@Z@Q$BF1,BFPDZ@@@@@@@ZGAP!!HRD!!HRDTGA(@@@@ZEP\!!HRD!!HRD!!HP\UF @@F!!H!!HRD!!HRD!!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
HRD!!D!!(@@@(QHRD!!HRD!!HRD!!HQDJ@@@XHRD!!HRD!!HRD!!HRD!!F@@@D2D!!HRD!!HRD!!HRD!!HQL@@A4QHRD!!HRD!!HRD!!HQD]@@@ZARD!!HRD!!HRD!!HRDEF @@F!!@W
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
HRD!!HRD!!HRDWDA(@@@@ZCQ\!!HRD!!HRDWCQ(@@@@@@A(PAQD!!HQDEDA(@@@@@@@@@F!!(]C0<]F!!(@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
            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 100 100 100 230 230 230 176 176 176 189 189 189 207 206 207 193 192 193 255 255 255 233 233 233]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@O<A?8O?1??''?>_?9??''?>_?9??''?>O?0_>@?0@@@b'); yourself); yourself]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
radioOffIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    "This resource specification was automatically generated
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
     by the ImageEditor of ST/X."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
    "Do not manually edit this!! If it is corrupted,
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
     the ImageEditor may not be able to read the specification."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
     self radioOffIcon inspect
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
     ImageEditor openOnClass:self andSelector:#radioOffIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
     Icon flushCachedIcons
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    <resource: #image>
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    ^Icon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
        constantNamed:'MacOSX2DarkToolbarIconLibrary class radioOffIcon'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
@@@@@@@@@@@@@@@@@@@@@@@@@@@ZF 8KB08ZF @@@@@@@@@Z@Q$BF1,BFPDZ@@@@@@@ZGAPH@B@ @@ TGA(@@@@ZEP\ HB@ HB@ H@\UF @@F!!H HB@ HB@ 
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
HB@ D!!(@@@(QHB@ HB@ HB@ HADJ@@@XCB@ HB@ HB@ HB@LF@@@D00 HB@ HB@ HB@ CAL@@A4QHB@ HB@ HB@ HAD]@@@ZAR@ HB@ HB@ HB@EF @@F!!@W
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
HB@ HB@ HB@WDA(@@@@ZCQ\ HB@ HB@WCQ(@@@@@@A(PAQDLCADEDA(@@@@@@@@@F!!(]C0<]F!!(@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
            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 100 100 100 230 230 230 176 176 176 189 189 189 207 206 207 193 192 193 255 255 255]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@O<A?8O?1??''?>_?9??''?>_?9??''?>O?0_>@?0@@@b'); yourself); yourself]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
radioOnDisabledIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
    "This resource specification was automatically generated
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
     by the ImageEditor of ST/X."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
    "Do not manually edit this!! If it is corrupted,
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
     the ImageEditor may not be able to read the specification."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
     self radioOnDisabledIcon inspect
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
     ImageEditor openOnClass:self andSelector:#radioOnDisabledIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
     Icon flushCachedIcons
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
    <resource: #image>
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
    ^Icon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
        constantNamed:'MacOSX2DarkToolbarIconLibrary class radioOnDisabledIcon'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
&Y&Y&Y&Y&Y&Y&PEX!!QBY&Y&Q,#*#J1&Y&Q :***# Y&P,:****(;BYD**#"C**HY%S*#S&P:(5&X**!!-5(**"Y"**L7\"**I%S*#+L(:(5&QJ*)?=:*"FYB3
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
*****#,I&Q :***# Y&Y$[H:(2,Y&Y&Y@U"EDI&Y&Y&Y&Y&Y&Y$b')
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
            colorMapFromArray:#[50 50 50 100 100 100 150 150 150 152 152 152 165 165 165 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 244 244 244 135 135 135]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@O<A?8O?1??''?>_?9??''?>_?9??''?>O?0_>@?0@@@b'); yourself); yourself]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
radioOnIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "This resource specification was automatically generated
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
     by the ImageEditor of ST/X."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
    "Do not manually edit this!! If it is corrupted,
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
     the ImageEditor may not be able to read the specification."
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
     self radioOnIcon inspect
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
     ImageEditor openOnClass:self andSelector:#radioOnIcon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
     Icon flushCachedIcons
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    "
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
    <resource: #image>
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
    ^Icon
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
        constantNamed:'MacOSX2DarkToolbarIconLibrary class radioOnIcon'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
@@@@@@@@@@@@@@@@@@@@@@@@@@@@B <OC0<J@@@@@@@@@@@JE0LED!!HE@1\J@@@@@@@JD@TUEQTUEQTED@(@@@@@E0TUEQTUEQTUEPTW@@@@B LUEQTFA@PF
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
EQTU@0(@@@<EEQTFC@,MC@XUEPTO@@@OD!!TUAADSD1DDEQTRC0@@C1HUEPPVD1LVAATUD <@@@<EEQTF@P$I@PXUEPTO@@@J@1TUEP JB  UEQTCB @@@A\E
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
EQTUEQTUEQTEE0@@@@@JD@TUEQTUEQTED@(@@@@@@@(W@0TRD TCE0(@@@@@@@@@@@(OC0<OB @@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
            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]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@G8A?8O?0??G?>_?9??''?>_?9??#?<O?0_>@_ @@@b'); yourself); yourself]
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    "Created: / 30-08-2018 / 08:41:19 / Claus Gittinger"
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
! !
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
!MacOSX2DarkToolbarIconLibrary class methodsFor:'documentation'!
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
version_CVS
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    ^ '$Header$'
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
! !
4209b6242799 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138